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
The `enumerate` method referred to in the current definition no longer exists and has been deprecated to a method of `pairs` in 0.7.
Thanks to @simonschoelly for pointing this out.
```
julia> using OffsetArrays;
julia> pairs(IndexLinear(),OffsetArray(1:5, -2:2))
pairs(::OffsetArray{Int64,1,UnitRange{Int64}}) with 5 entries:
-2 => 1
-1 => 2
0 => 3
1 => 4
2 => 5
```
(cherry picked from commit 549240a)
0 commit comments