This commit is contained in:
JOLIMAITRE Matthieu 2024-06-15 00:22:28 +02:00
commit 6694c7eb9a
10 changed files with 328 additions and 0 deletions

10
src/lib.ts Normal file
View file

@ -0,0 +1,10 @@
// types
export type { Arr, ClassOf, Constructible, Function, InstanceOf, KeyOfType, Tail } from "./lib/types.ts";
// functions
export { all, enumerate, filter, filter_map, it, Iter, map, zip } from "./lib/iter.ts";
export { next, range, split_promise, wait } from "./lib/utils.ts";
// Structures
export { Chain } from "./lib/Chain.ts";
export { Channel } from "./lib/Channel.ts";