UNPKG

lazzy.ts

Version:

Fast and lightweight library for lazy operations with iterable objects.

7 lines 182 B
export declare class Node<T> { value: T; left?: Node<T>; right?: Node<T>; constructor(value: T, left?: Node<T>, right?: Node<T>); } //# sourceMappingURL=node.d.ts.map