Skip to content

Commit 4377615

Browse files
committed
keys(::Generator) pass-through
Let keys pass through to allow lightweigth/lazy find* and arg* functions
1 parent 76d6a08 commit 4377615

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

base/generator.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ length(g::Generator) = length(g.iter)
5151
size(g::Generator) = size(g.iter)
5252
axes(g::Generator) = axes(g.iter)
5353
ndims(g::Generator) = ndims(g.iter)
54+
keys(g::Generator) = keys(g.iter)
5455

5556

5657
## iterator traits

0 commit comments

Comments
 (0)