Skip to content

Commit a3405c1

Browse files
committed
added compat
1 parent b35c5eb commit a3405c1

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
@@ -503,6 +503,9 @@ julia> unzip(enumerate("Hello"))
503503
julia> unzip([[1, "apple"], [2.5, "orange"], [0, "mango"]])
504504
(Real[1, 2.5, 0], ["apple", "orange", "mango"])
505505
```
506+
507+
!!! compat "Julia 1.11"
508+
The `unzip` function requires Julia 1.11 or later.
506509
"""
507510
function unzip(itrs)
508511
n = Base.haslength(itrs) ? length(itrs) : nothing

0 commit comments

Comments
 (0)