UNPKG

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.

14 lines 441 B
import { treeIterate } from "./impl/tree-iterate.js"; import { treeCollect } from "./impl/tree-collect.js"; /** * @public * Utilities that apply to tree like structures. */ export declare class _Tree { /** {@inheritDoc treeIterate} */ static readonly iterate: typeof treeIterate; /** {@inheritDoc treeCollect} */ static readonly collect: typeof treeCollect; private constructor(); } //# sourceMappingURL=_tree.d.ts.map