Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Iterators.map #34352

Merged
merged 13 commits into from
Jun 18, 2020
Prev Previous commit
Next Next commit
Fix test/iterators.jl
  • Loading branch information
tkf committed Jan 12, 2020
commit ff8734a16aee5cac66feafd4c8ea7cf21fbe1a38
2 changes: 2 additions & 0 deletions test/iterators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
using Base.Iterators
using Random

using Base: map

# zip and filter iterators
# issue #4718
@test collect(Iterators.filter(x->x[1], zip([true, false, true, false],"abcd"))) == [(true,'a'),(true,'c')]
Expand Down