Merge pull request #1049 from rtfeldman/map2

List.map2
This commit is contained in:
Richard Feldman 2021-03-05 22:55:12 -05:00 committed by GitHub
commit 1211fa93f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 230 additions and 2 deletions

View file

@ -7,6 +7,7 @@ const list = @import("list.zig");
comptime {
exportListFn(list.listMap, "map");
exportListFn(list.listMap2, "map2");
exportListFn(list.listMapWithIndex, "map_with_index");
exportListFn(list.listKeepIf, "keep_if");
exportListFn(list.listWalk, "walk");