From 93b1818b899370ec98234813c07ba57072002ed8 Mon Sep 17 00:00:00 2001 From: "Steven G. Johnson" Date: Mon, 10 Jul 2023 10:09:54 -0400 Subject: [PATCH] added compat --- base/iterators.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/base/iterators.jl b/base/iterators.jl index 31881cac1da8e..28af1b938b615 100644 --- a/base/iterators.jl +++ b/base/iterators.jl @@ -505,6 +505,9 @@ julia> unzip(enumerate("Hello")) julia> unzip([[1, "apple"], [2.5, "orange"], [0, "mango"]]) (Real[1, 2.5, 0], ["apple", "orange", "mango"]) ``` + +!!! compat "Julia 1.10" + The `unzip` function requires Julia 1.10 or later. """ function unzip(itrs) n = Base.haslength(itrs) ? length(itrs) : nothing