We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8574723 commit 327c39cCopy full SHA for 327c39c
jl/ascii.jl
@@ -9,6 +9,7 @@ ref(s::ASCIIString, i::Int) = char(s.data[i])
9
## overload methods for efficiency ##
10
11
ref(s::ASCIIString, r::Range1{Int}) = ASCIIString(ref(s.data,r))
12
+ref(s::ASCIIString, indx::Array{Int,1}) = ASCIIString(s.data[indx])
13
strchr(s::ASCIIString, c::Char) = c < 0x80 ? memchr(s.data, c) : 0
14
strcat(a::ASCIIString, b::ASCIIString, c::ASCIIString...) = ASCIIString(memcat(a,b,c...))
15
0 commit comments