Skip to content

Commit 93b1818

Browse files
committed
added compat
1 parent 3623b67 commit 93b1818

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

base/iterators.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -505,6 +505,9 @@ julia> unzip(enumerate("Hello"))
505505
julia> unzip([[1, "apple"], [2.5, "orange"], [0, "mango"]])
506506
(Real[1, 2.5, 0], ["apple", "orange", "mango"])
507507
```
508+
509+
!!! compat "Julia 1.10"
510+
The `unzip` function requires Julia 1.10 or later.
508511
"""
509512
function unzip(itrs)
510513
n = Base.haslength(itrs) ? length(itrs) : nothing

0 commit comments

Comments
 (0)