rc-js-util
Advanced tools
Comparing version 5.0.0-alpha.24 to 5.0.0-alpha.25
@@ -65,4 +65,4 @@ import { Range2d } from "../range2d/range2d"; | ||
* @public | ||
* A float32 {@link Margin2d}. | ||
* Float32 {@link Margin2d}. | ||
*/ | ||
export declare type TF32Margin2d = Margin2d<Float32Array>; |
@@ -109,4 +109,4 @@ import { Mat2 } from "../../mat2/mat2"; | ||
* @public | ||
* A float32 {@link Range2d}. | ||
* Float32 {@link Range2d}. | ||
*/ | ||
export declare type TF32Range2d = Range2d<Float32Array>; |
@@ -103,2 +103,3 @@ export { IDebugWeakStore, IDebugSharedObject, IDebugSharedObjectLifeCycleChecks, TDebugListener, IDebugProtectedView, IDebugWeakBroadcastEvent } from "rc-js-util-globals/index"; | ||
export { mapArrayMap } from "./map/impl/map-array-map"; | ||
export { mapDeleteGet } from "./map/impl/map-delete-get"; | ||
export { mapEntriesToArray } from "./map/impl/map-entries-to-array"; | ||
@@ -105,0 +106,0 @@ export { mapFirstKey } from "./map/impl/map-first-key"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.arrayMap = exports.arrayMapRange = exports.arrayLast = exports.arrayIsArray = exports.arrayIntersect = exports.arrayInsertAtIndex = exports.arrayIndex = exports.arrayGenerateRange = exports.arrayForEach = exports.arrayFlatMap = exports.arrayEmptyArray = exports.arrayCopyInto = exports.arrayCompactMap = exports.arrayCompact = exports.arrayCollect = exports.arrayBinaryLastIndexOf = exports.arrayBinaryIndexOf = exports.SharedStaticArray = exports.SharedArray = exports.getEmscriptenWrapper = exports.AReferenceCounted = exports.ASharedObject = exports.BroadcastEvent = exports.ECircularStackOverflowMode = exports.CircularFIFOStack = exports.CircularBuffer = exports.NormalizedDataViewProvider = exports.Vec4 = exports.Vec3 = exports.Vec2 = exports.Mat4 = exports.Mat3 = exports.Mat2 = exports.Range2d = exports.Margin2d = exports.ATypedArrayTuple = exports._String = exports._Set = exports._RegExp = exports._Path = exports._Number = exports._Math = exports._Map = exports._Fp = exports._Production = exports.NestableError = exports._Dictionary = exports._Debug = exports._Array = exports.RcJsUtilDebugImpl = void 0; | ||
exports.stringNormalizeNullUndefinedToEmpty = exports.stringNormalizeEmptyToUndefined = exports.setValuesToArray = exports.regexEscapeRegex = exports.pathJoin = exports.numberGetHexString = exports.mathMin = exports.mathMax = exports.mathBoundRandom = exports.mathBound = exports.mapValuesToArray = exports.mapPush = exports.mapKeysToArray = exports.mapInitializeGet = exports.mapFirstValue = exports.mapFirstKey = exports.mapEntriesToArray = exports.mapArrayMap = exports.promiseRejectNull = exports.promiseRejectFalsey = exports.fpValueOrNull = exports.fpOnce = exports.fpNormalizeToUndefined = exports.fpNormalizeToNull = exports.fpNoOp = exports.fpMaybeNewValue = exports.fpIdentity = exports.dictionaryValues = exports.dictionaryPush = exports.dictionaryPairs = exports.dictionaryForEach = exports.dictionaryExtend = exports.dictionaryCloneExtend = exports.arrayUnion = exports.arrayReplaceOne = exports.arrayRemoveOne = exports.arrayRemoveMany = exports.arrayPushUnique = exports.arrayNormalizeNullUndefinedToEmpty = exports.arrayNormalizeEmptyToUndefined = exports.arrayContains = void 0; | ||
exports.stringNormalizeNullUndefinedToEmpty = exports.stringNormalizeEmptyToUndefined = exports.setValuesToArray = exports.regexEscapeRegex = exports.pathJoin = exports.numberGetHexString = exports.mathMin = exports.mathMax = exports.mathBoundRandom = exports.mathBound = exports.mapValuesToArray = exports.mapPush = exports.mapKeysToArray = exports.mapInitializeGet = exports.mapFirstValue = exports.mapFirstKey = exports.mapEntriesToArray = exports.mapDeleteGet = exports.mapArrayMap = exports.promiseRejectNull = exports.promiseRejectFalsey = exports.fpValueOrNull = exports.fpOnce = exports.fpNormalizeToUndefined = exports.fpNormalizeToNull = exports.fpNoOp = exports.fpMaybeNewValue = exports.fpIdentity = exports.dictionaryValues = exports.dictionaryPush = exports.dictionaryPairs = exports.dictionaryForEach = exports.dictionaryExtend = exports.dictionaryCloneExtend = exports.arrayUnion = exports.arrayReplaceOne = exports.arrayRemoveOne = exports.arrayRemoveMany = exports.arrayPushUnique = exports.arrayNormalizeNullUndefinedToEmpty = exports.arrayNormalizeEmptyToUndefined = exports.arrayContains = void 0; | ||
var debug_namepace_1 = require("./debug/debug-namepace"); | ||
@@ -152,2 +152,4 @@ Object.defineProperty(exports, "RcJsUtilDebugImpl", { enumerable: true, get: function () { return debug_namepace_1.RcJsUtilDebugImpl; } }); | ||
Object.defineProperty(exports, "mapArrayMap", { enumerable: true, get: function () { return map_array_map_1.mapArrayMap; } }); | ||
var map_delete_get_1 = require("./map/impl/map-delete-get"); | ||
Object.defineProperty(exports, "mapDeleteGet", { enumerable: true, get: function () { return map_delete_get_1.mapDeleteGet; } }); | ||
var map_entries_to_array_1 = require("./map/impl/map-entries-to-array"); | ||
@@ -154,0 +156,0 @@ Object.defineProperty(exports, "mapEntriesToArray", { enumerable: true, get: function () { return map_entries_to_array_1.mapEntriesToArray; } }); |
@@ -9,2 +9,3 @@ import { mapArrayMap } from "./impl/map-array-map"; | ||
import { mapEntriesToArray } from "./impl/map-entries-to-array"; | ||
import { mapDeleteGet } from "./impl/map-delete-get"; | ||
/** | ||
@@ -17,2 +18,4 @@ * @public | ||
static readonly arrayMap: typeof mapArrayMap; | ||
/** {@inheritDoc mapDeleteGet} */ | ||
static readonly deleteGet: typeof mapDeleteGet; | ||
/** {@inheritDoc mapEntriesToArray} */ | ||
@@ -19,0 +22,0 @@ static readonly entriesToArray: typeof mapEntriesToArray; |
@@ -12,2 +12,3 @@ "use strict"; | ||
const map_entries_to_array_1 = require("./impl/map-entries-to-array"); | ||
const map_delete_get_1 = require("./impl/map-delete-get"); | ||
/** | ||
@@ -24,2 +25,4 @@ * @public | ||
_Map.arrayMap = map_array_map_1.mapArrayMap; | ||
/** {@inheritDoc mapDeleteGet} */ | ||
_Map.deleteGet = map_delete_get_1.mapDeleteGet; | ||
/** {@inheritDoc mapEntriesToArray} */ | ||
@@ -26,0 +29,0 @@ _Map.entriesToArray = map_entries_to_array_1.mapEntriesToArray; |
/** | ||
* @public gives the next int between 0 - 16. | ||
* @public Gives the next int between 0 - 16. | ||
*/ | ||
export declare type TNextInt<TInt extends number> = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, ...never[]][TInt]; |
{ | ||
"name": "rc-js-util", | ||
"version": "5.0.0-alpha.24", | ||
"version": "5.0.0-alpha.25", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
513238
514
7272