@rimbu/base
Version:
Utilities to implement Rimbu collections
20 lines • 1.03 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RimbuError = exports.Entry = exports.Arr = void 0;
var tslib_1 = require("tslib");
/**
* @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.
*/
exports.Arr = tslib_1.__importStar(require("./arr.cjs"));
exports.Entry = tslib_1.__importStar(require("./entry.cjs"));
exports.RimbuError = tslib_1.__importStar(require("./rimbu-error.cjs"));
tslib_1.__exportStar(require("./plain-object.cjs"), exports);
// Internal exports (may change without notice)
tslib_1.__exportStar(require("./internal.cjs"), exports);
//# sourceMappingURL=index.cjs.map