Skip to content

Commit

Permalink
make _zip public
Browse files Browse the repository at this point in the history
  • Loading branch information
NQNStudios committed Dec 24, 2024
1 parent e36fb99 commit 877b965
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kiss/Prelude.hx
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ class Prelude {

public static var concat:Function = Reflect.makeVarArgs(_concat);

static function _zip(iterables:Array<Dynamic>, extraHandling:ExtraElementHandling):kiss.List<kiss.List<Dynamic>> {
public static function _zip(iterables:Array<Dynamic>, extraHandling:ExtraElementHandling):kiss.List<kiss.List<Dynamic>> {
var lists = [];
var iterators = [for (iterable in iterables) iterable.iterator()];

Expand Down

0 comments on commit 877b965

Please sign in to comment.