@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
20 lines (16 loc) • 632 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ArrayIndexOutOfBoundsExceptionTypeId = exports.ArrayIndexOutOfBoundsException = void 0;
// ets_tracing: off
const ArrayIndexOutOfBoundsExceptionTypeId = /*#__PURE__*/Symbol();
exports.ArrayIndexOutOfBoundsExceptionTypeId = ArrayIndexOutOfBoundsExceptionTypeId;
class ArrayIndexOutOfBoundsException {
constructor(index) {
this.index = index;
this._typeId = ArrayIndexOutOfBoundsExceptionTypeId;
}
}
exports.ArrayIndexOutOfBoundsException = ArrayIndexOutOfBoundsException;
//# sourceMappingURL=ArrayIndexOutOfBoundsException.js.map