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.

19 lines 549 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports._Tree = void 0; const tree_iterate_js_1 = require("./impl/tree-iterate.js"); const tree_collect_js_1 = require("./impl/tree-collect.js"); /** * @public * Utilities that apply to tree like structures. */ class _Tree { constructor() { } } exports._Tree = _Tree; /** {@inheritDoc treeIterate} */ _Tree.iterate = tree_iterate_js_1.treeIterate; /** {@inheritDoc treeCollect} */ _Tree.collect = tree_collect_js_1.treeCollect; //# sourceMappingURL=_tree.js.map