Skip to content

Commit

Permalink
keys(::Generator) pass-through
Browse files Browse the repository at this point in the history
Let keys pass through to allow lightweigth/lazy find* and arg* functions
  • Loading branch information
rapus95 committed Feb 5, 2020
1 parent aa36eef commit 8beb302
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions base/generator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ length(g::Generator) = length(g.iter)
size(g::Generator) = size(g.iter)
axes(g::Generator) = axes(g.iter)
ndims(g::Generator) = ndims(g.iter)
keys(g::Generator) = keys(g.iter)


## iterator traits
Expand Down

0 comments on commit 8beb302

Please sign in to comment.