https://github.com/JuliaLang/julia
Revision 97d86aa0e44e5ba9db30db0ae44802219d93eaab authored by Yuri on 14 February 2019, 20:41:13 UTC, committed by Kristoffer Carlsson on 15 April 2019, 12:34:17 UTC
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 549240af7966b5b842083144efc51b9a5b7f1295)
1 parent 6e7a4c8
History
Tip revision: 97d86aa0e44e5ba9db30db0ae44802219d93eaab authored by Yuri on 14 February 2019, 20:41:13 UTC
Fix enumerate documentation (#30398)
Tip revision: 97d86aa
File Mode Size
.circleci
.github
base
contrib
deps
doc
etc
src
stdlib
test
ui
.freebsdci.sh -rwxr-xr-x 1.2 KB
.gitattributes -rw-r--r-- 67 bytes
.gitignore -rw-r--r-- 246 bytes
.mailmap -rw-r--r-- 11.0 KB
.travis.yml -rw-r--r-- 6.9 KB
CONTRIBUTING.md -rw-r--r-- 21.1 KB
DISTRIBUTING.md -rw-r--r-- 23.6 KB
HISTORY.md -rw-r--r-- 238.0 KB
LICENSE.md -rw-r--r-- 5.1 KB
Make.inc -rw-r--r-- 36.4 KB
Makefile -rw-r--r-- 28.9 KB
NEWS.md -rw-r--r-- 12.7 KB
README.arm.md -rw-r--r-- 5.7 KB
README.md -rw-r--r-- 29.3 KB
README.windows.md -rw-r--r-- 13.0 KB
VERSION -rw-r--r-- 10 bytes
Windows.inc -rw-r--r-- 1.5 KB
appveyor.yml -rw-r--r-- 2.6 KB

README.md

back to top