Skip to content

Commit 8f839d0

Browse files
authored
delete outdated comment
1 parent 54bd72c commit 8f839d0

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

base/iterators.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ IteratorEltype(::Type{Reverse{T}}) where {T} = IteratorEltype(T)
121121
last(r::Reverse) = first(r.itr) # the first shall be last
122122

123123
# Fallback method of `iterate(::Reverse{T})` which assumes the collection has `getindex(::T) and `reverse(eachindex(::T))`
124-
# don't propagate inbounds for this just in case
125124
@propagate_inbounds function iterate(A::Reverse, state=(reverse(eachindex(A.itr)),))
126125
y = iterate(state...)
127126
y === nothing && return y

0 commit comments

Comments
 (0)