UNPKG

@rickosborne/rebound

Version:

Rick Osborne's utilities for working with bounded numbers

22 lines (21 loc) 575 B
const BOUNDS = /* @__PURE__ */ Symbol.for("bounds"); const LOWER_IN = "["; const LOWER_EX = "("; const UPPER_IN = "]"; const UPPER_EX = ")"; const INT_SET = "int"; const REAL_SET = "real"; const TYPED_BOUNDS_KEYS = ["typeName", "range", "lowerInc", "lower", "int", "upper", "upperInc"]; const TYPED_CHECKED_BOUNDS_KEYS = ["typeName", "label", "lower", "upper", "isInt", "isLowerInc", "isUpperInc"]; export { BOUNDS, INT_SET, LOWER_EX, LOWER_IN, REAL_SET, TYPED_BOUNDS_KEYS, TYPED_CHECKED_BOUNDS_KEYS, UPPER_EX, UPPER_IN }; //# sourceMappingURL=spec.mjs.map