@rimbu/base
Version:
Utilities to implement Rimbu collections
15 lines (14 loc) • 661 B
text/typescript
/**
* @packageDocumentation
*
* The `@rimbu/base` package provides foundational immutable array utilities, tuple helpers,
* plain‑object type predicates and structured error types that power all other Rimbu collections.<br/>
* Use it directly when you need low‑level, performance‑aware primitives for persistent data
* structures without pulling in the higher‑level collection packages.<br/>
* See the Rimbu docs and API reference for more information.
*/
export * as Arr from './arr.cjs';
export * as Entry from './entry.cjs';
export * as RimbuError from './rimbu-error.cjs';
export * from './plain-object.cjs';
export * from './internal.cjs';