Skip to content

Commit

Permalink
add inbounds to some more substrings (#29680)
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC authored Oct 18, 2018
1 parent 0bab957 commit 5c2e0b5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions base/strings/util.jl
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,11 @@ end
function chomp(s::String)
i = lastindex(s)
if i < 1 || codeunit(s,i) != 0x0a
SubString(s, 1, i)
return @inbounds SubString(s, 1, i)
elseif i < 2 || codeunit(s,i-1) != 0x0d
SubString(s, 1, prevind(s, i))
return @inbounds SubString(s, 1, prevind(s, i))
else
SubString(s, 1, prevind(s, i-1))
return @inbounds SubString(s, 1, prevind(s, i-1))
end
end

Expand Down Expand Up @@ -156,7 +156,7 @@ julia> lstrip(a)
function lstrip(f, s::AbstractString)
e = lastindex(s)
for (i, c) in pairs(s)
!f(c) && return SubString(s, i, e)
!f(c) && return @inbounds SubString(s, i, e)
end
SubString(s, e+1, e)
end
Expand Down Expand Up @@ -187,7 +187,7 @@ julia> rstrip(a)
"""
function rstrip(f, s::AbstractString)
for (i, c) in Iterators.reverse(pairs(s))
f(c) || return SubString(s, 1, i)
f(c) || return @inbounds SubString(s, 1, i)
end
SubString(s, 1, 0)
end
Expand Down Expand Up @@ -393,7 +393,7 @@ function _rsplit(str::AbstractString, splitter, limit::Integer, keepempty::Bool,
r = something(findlast(splitter, str), 0)
j, k = first(r), last(r)
while j > 0 && k > 0 && length(strs) != limit-1
(keepempty || k < n) && pushfirst!(strs, SubString(str,nextind(str,k),n))
(keepempty || k < n) && pushfirst!(strs, @inbounds SubString(str,nextind(str,k),n))
n = prevind(str, j)
r = something(findprev(splitter,str,n), 0)
j, k = first(r), last(r)
Expand Down

0 comments on commit 5c2e0b5

Please sign in to comment.