UNPKG

flo-ll-rb-tree

Version:

A simple left leaning red black tree implementation.

4 lines (3 loc) 145 B
import { Node } from "./tree.js"; declare function nodeToStr<T>(valToStr: (t: T) => string): (node: Node<T>) => string; export { nodeToStr };