You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IndexStyle(::Type{<:AbstractFill{<:Any,N,<:NTuple{N,Base.OneTo{Int}}}}) where N =IndexLinear()
This means
julia>using StaticArrays
julia> f =Fill(1, (SOneTo(2),))
2-element Fill{Int64, 1, Tuple{SOneTo{2}}} with indices SOneTo(2), with entries equal to 1
julia>IndexStyle(f)
IndexCartesian()
This may use linear indexing as well, though.
The text was updated successfully, but these errors were encountered:
FillArrays.jl/src/FillArrays.jl
Line 59 in de36a50
This means
This may use linear indexing as well, though.
The text was updated successfully, but these errors were encountered: