https://github.com/JuliaLang/julia
Raw File
Tip revision: 795eef06d87e7e94da2b742072f8b87fd17e42ba authored by Gabriel Baraldi on 21 March 2024, 13:15:30 UTC
Save current state of branch
Tip revision: 795eef0
strings.jl
# This file is a part of Julia. License is MIT: https://julialang.org/license

include("strings/annotated.jl")
include("strings/search.jl")
include("strings/unicode.jl")

import .Unicode: textwidth, islowercase, isuppercase, isletter, isdigit, isnumeric, iscntrl, ispunct,
    isspace, isprint, isxdigit, lowercase, uppercase, titlecase, lowercasefirst, uppercasefirst

import .Iterators: PartitionIterator

include("strings/util.jl")
include("strings/io.jl")
back to top