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.
18 lines (16 loc) • 412 B
text/typescript
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
{
/** {@inheritDoc treeIterate} */
public static readonly iterate = treeIterate;
/** {@inheritDoc treeCollect} */
public static readonly collect = treeCollect;
private constructor()
{
}
}