UNPKG

lazzy.ts

Version:

Fast and lightweight library for lazy operations with iterable objects.

9 lines 297 B
import { OptionalComparer } from "./helpers"; import { Node } from "./node"; export declare class BinaryTree<T> { root: Node<T>; constructor(root: Node<T>); add(node: Node<T>, ...comparer: OptionalComparer<T>): void; private recursiveAdd; } //# sourceMappingURL=binaryTree.d.ts.map