rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
15 lines • 382 B
JavaScript
import { treeIterate } from "./impl/tree-iterate.js";
import { treeCollect } from "./impl/tree-collect.js";
/**
* @public
* Utilities that apply to tree like structures.
*/
export class _Tree {
constructor() {
}
}
/** {@inheritDoc treeIterate} */
_Tree.iterate = treeIterate;
/** {@inheritDoc treeCollect} */
_Tree.collect = treeCollect;
//# sourceMappingURL=_tree.js.map