Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d68752b

Browse files
committedMay 6, 2018
Work around invalidation and minor LinearIndices simplifications
1 parent 653d2d4 commit d68752b

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed
 

‎base/abstractarray.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ julia> lastindex(rand(3,4,5), 2)
159159
4
160160
```
161161
"""
162-
lastindex(a::AbstractArray) = (@_inline_meta; last(eachindex(IndexLinear(), a)))
162+
lastindex(a::AbstractArray) = (@_inline_meta; last(LinearIndices(a)))
163163
lastindex(a::AbstractArray, d) = (@_inline_meta; last(axes(a, d)))
164164

165165
"""
@@ -177,7 +177,7 @@ julia> firstindex(rand(3,4,5), 2)
177177
1
178178
```
179179
"""
180-
firstindex(a::AbstractArray) = (@_inline_meta; first(eachindex(IndexLinear(), a)))
180+
firstindex(a::AbstractArray) = (@_inline_meta; first(LinearIndices(a)))
181181
firstindex(a::AbstractArray, d) = (@_inline_meta; first(axes(a, d)))
182182

183183
first(a::AbstractArray) = a[first(eachindex(a))]

‎base/indices.jl

+5-4
Original file line numberDiff line numberDiff line change
@@ -354,10 +354,11 @@ LinearIndices(inds::NTuple{N,Union{<:Integer,AbstractUnitRange{<:Integer}}}) whe
354354
LinearIndices(A::Union{AbstractArray,SimpleVector}) = LinearIndices(axes(A))
355355

356356
# AbstractArray implementation
357-
IndexStyle(::Type{LinearIndices{N,R}}) where {N,R} = IndexLinear()
358-
axes(iter::LinearIndices{N,R}) where {N,R} = iter.indices
359-
size(iter::LinearIndices{N,R}) where {N,R} = length.(iter.indices)
360-
function getindex(iter::LinearIndices{N,R}, i::Int) where {N,R}
357+
IndexStyle(::Type{<:LinearIndices}) = IndexLinear()
358+
axes(iter::LinearIndices) = iter.indices
359+
size(iter::LinearIndices) = map(unsafe_length, iter.indices)
360+
length(iter::LinearIndices) = prod(size(iter))
361+
function getindex(iter::LinearIndices, i::Int)
361362
@boundscheck checkbounds(iter, i)
362363
i
363364
end

0 commit comments

Comments
 (0)
Please sign in to comment.