-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
212 lines (208 loc) · 15.2 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
import "rc-js-util-globals";
import { IDebugFlags } from "./debug/i-debug-flags.js";
export { emscriptenAsanTestModuleOptions, emscriptenSafeHeapTestModuleOptions, ISanitizedTestModuleOptions, SanitizedEmscriptenTestModule } from "./web-assembly/emscripten/sanitized-emscripten-test-module.js";
export { IDebugAllocateListener } from "./debug/i-debug-allocate-listener.js";
export { IDebugProtectedView } from "./debug/i-debug-protected-view.js";
export { Emscripten } from "./external/emscripten.js";
export { _Array } from "./array/_array.js";
export { _Debug } from "./debug/_debug.js";
export { _Dictionary } from "./dictionary/_dictionary.js";
export { _Equality } from "./equality/_equality.js";
export { NestableError } from "./error-handling/nestable-error.js";
export { _Production } from "./production/_production.js";
export { _Promise } from "./promise/_promise.js";
export { _Fp } from "./fp/_fp.js";
export { _Identifier } from "./identifier/_identifier.js";
export { _Iterator } from "./iterators/_iterator.js";
export { _Map } from "./map/_map.js";
export { _Math } from "./math/_math.js";
export { _F32 } from "./number/impl/_f32.js";
export { _F64 } from "./number/impl/_f64.js";
export { _Number } from "./number/_number.js";
export { _Path } from "./path/_path.js";
export { _RegExp } from "./reg-exp/_reg-exp.js";
export { _Set } from "./set/_set.js";
export { _String } from "./string/_string.js";
export { TGetComparisonValueAtIndex } from "./array/impl/binary-find-insertion-index.js";
export { TTypedArrayCtor } from "./array/typed-array/t-typed-array-ctor.js";
export { ATypedArrayTuple, TDecayedTypedArrayTuple, TExtractIndexes, TTypedArrayTupleMutativeMethods } from "./array/typed-array/a-typed-array-tuple.js";
export { ITypedArrayTupleFactory } from "./array/typed-array/i-typed-array-tuple-factory.js";
export { Margin2d, TF32Margin2d, TMargin2dCtorArgs, IMargin2dCtor, TF64Margin2d, IReadonlyMargin2d } from "./array/typed-array/2d/margin2d/margin2d.js";
export { Range2d, TF32Range2d, TRange2dCtorArgs, IRange2dCtor, TF64Range2d, IReadonlyRange2d } from "./array/typed-array/2d/range2d/range2d.js";
export { Mat2, TF32Mat2, TMat2CtorArgs, IMat2Ctor, TF64Mat2, IReadonlyMat2 } from "./array/typed-array/mat2/mat2.js";
export { Mat3, TF32Mat3, TMat3CtorArgs, IMat3Ctor, TF64Mat3, IReadonlyMat3 } from "./array/typed-array/mat3/mat3.js";
export { Mat4, TF32Mat4, TMat4CtorArgs, IMat4Ctor, TF64Mat4, IReadonlyMat4 } from "./array/typed-array/mat4/mat4.js";
export { Vec2, TF32Vec2, TVec2CtorArgs, IVec2Ctor, TF64Vec2, IReadonlyVec2 } from "./array/typed-array/vec2/vec2.js";
export { Range1d, TF32Range1d, TF64Range1d, TRange1dCtorArgs, IRange1dCtor, IReadonlyRange1d } from "./array/typed-array/vec2/range1d/range1d.js";
export { Vec3, TF32Vec3, TVec3CtorArgs, IVec3Ctor, TF64Vec3, IReadonlyVec3 } from "./array/typed-array/vec3/vec3.js";
export { Vec4, TF32Vec4, TVec4CtorArgs, IVec4Ctor, TF64Vec4, IReadonlyVec4 } from "./array/typed-array/vec4/vec4.js";
export { NormalizedDataViewProvider } from "./array/typed-array/normalized-data-view/normalized-data-view-provider.js";
export { INormalizedDataView } from "./array/typed-array/normalized-data-view/i-normalized-data-view.js";
export { TTypedArray } from "./array/typed-array/t-typed-array.js";
export { CircularBuffer } from "./collection/circular-buffer.js";
export { CircularFIFOStack, ECircularStackOverflowMode } from "./collection/circular-fifo-stack.js";
export { DirtyCheckedUniqueCollection, IDirtyCheckedUniqueCollection } from "./collection/dirty-checked-unique-collection.js";
export { IFIFOStack } from "./collection/i-fifo-stack.js";
export { ReferenceCounter } from "./collection/reference-counter.js";
export { ERgbaMasks, ERgbaShift } from "./colors/e-rgba-masks.js";
export { RgbaColorPacker } from "./colors/rgba-color-packer.js";
export { DebugProtectedView } from "./debug/debug-protected-view.js";
export { TGetStringFromLocalization } from "./i18n/t-get-string-from-localization.js";
export { IncrementingIdentifierFactory } from "./identifier/impl/incrementing-identifier-factory.js";
export { BroadcastEvent } from "./eventing/broadcast-event.js";
export { IBroadcastEvent } from "./eventing/i-broadcast-event.js";
export { TListener } from "./eventing/t-listener.js";
export { ReferenceCountedPtr, IReferenceCountedPtr } from "./lifecycle/reference-counted-ptr.js";
export { ILinkedReferenceCounter, LinkedReferenceCounter } from "./lifecycle/linked-reference-counter.js";
export { AOnDestroy, IOnDestroy } from "./lifecycle/i-on-destroy.js";
export { AReferenceCounted, IReferenceCounted } from "./lifecycle/a-reference-counted.js";
export { TemporaryListener, ITemporaryListener } from "./lifecycle/temporary-listener.js";
export { IDictionary } from "./typescript/i-dictionary.js";
export { IReadonlyDictionary } from "./typescript/i-readonly-dictionary.js";
export { INumericKeyedDictionary } from "./typescript/i-numeric-keyed-dictionary.js";
export { IReadonlySetLike } from "./typescript/i-readonly-set-like.js";
export { ISetLike } from "./typescript/i-set-like.js";
export { TExtractTypeTypedArrayTuple } from "./typescript/t-extract-type-typed-array-tuple.js";
export { TKeysOf } from "./typescript/t-keys-of.js";
export { TNeverFallback } from "./typescript/t-never-fallback.js";
export { TNeverPredicate } from "./typescript/t-never-predicate.js";
export { TNextInt } from "./typescript/t-next-int.js";
export { TNullable } from "./typescript/t-nullable.js";
export { TPickExcept } from "./typescript/t-pick-except.js";
export { TPredicate } from "./typescript/t-predicate.js";
export { TPickPartial } from "./typescript/t-pick-partial.js";
export { TPickRequired } from "./typescript/t-pick-required.js";
export { TProperty } from "./typescript/t-property.js";
export { TTupleLike } from "./typescript/t-tuple-like.js";
export { TTupleLikeOfLength } from "./typescript/t-tuple-like-of-length.js";
export { TTypedArrayCast } from "./typescript/t-typed-array-cast.js";
export { TUnionToIntersection } from "./typescript/t-union-to-intersection.js";
export { TUnpackArray } from "./typescript/t-unpack-array.js";
export { TUnpackIfArray } from "./typescript/t-unpack-if-array.js";
export { TWriteable } from "./typescript/t-writable.js";
export { IEmscriptenWrapper, IEmscriptenDebug } from "./web-assembly/emscripten/i-emscripten-wrapper.js";
export { getEmscriptenWrapper } from "./web-assembly/emscripten/get-emscripten-wrapper.js";
export { TWebAssemblyMemoryListenerArgs } from "./web-assembly/t-web-assembly-memory-listener-args.js";
export { ISharedArray } from "./web-assembly/shared-array/i-shared-array.js";
export { IWebAssemblyMemoryMemory } from "./external/i-web-assembly-memory.js";
export { SharedArray, TF32SharedArray, TF64SharedArray } from "./web-assembly/shared-array/shared-array.js";
export { SharedStaticArray, TF32SharedStaticArray, TF64SharedStaticArray } from "./web-assembly/shared-array/shared-static-array.js";
export { IMemoryUtilBindings } from "./web-assembly/emscripten/i-memory-util-bindings.js";
export { isLittleEndian } from "./web-assembly/is-little-endian.js";
export { RawVoidPointer, IRawVoidPointer } from "./web-assembly/raw-void-pointer.js";
export { DebugSharedObjectChecks } from "./web-assembly/debug-shared-object-checks.js";
export { IJsUtilBindings } from "./web-assembly/i-js-util-bindings.js";
export { IDebugBindings } from "./web-assembly/emscripten/i-debug-bindings.js";
export { arrayAddToSet } from "./array/impl/array-add-to-set.js";
export { arrayBinaryIndexOf } from "./array/impl/array-binary-index-of.js";
export { arrayBinaryLastIndexOf } from "./array/impl/array-binary-last-index-of.js";
export { arrayCollect } from "./array/impl/array-collect.js";
export { arrayCompact } from "./array/impl/array-compact.js";
export { arrayCompactMap } from "./array/impl/array-compact-map.js";
export { arrayCopyInto } from "./array/impl/array-copy-into.js";
export { arrayEmptyArray } from "./array/impl/array-empty-array.js";
export { arrayFlatMap } from "./array/impl/array-flat-map.js";
export { arrayForEach } from "./array/impl/array-for-each.js";
export { arrayForEachRange } from "./array/impl/array-for-each-range.js";
export { arrayGenerateRange } from "./array/impl/array-generate-range.js";
export { arrayIndex } from "./array/impl/array-index.js";
export { arrayInsertAtIndex } from "./array/impl/array-insert-at-index.js";
export { arrayIntersect } from "./array/impl/array-intersect.js";
export { arrayIsArray } from "./array/impl/array-is-array.js";
export { arrayIsNotEmpty } from "./array/impl/array-is-not-empty.js";
export { arrayLast } from "./array/impl/array-last.js";
export { arrayMapRange } from "./array/impl/array-map-range.js";
export { arrayMax } from "./array/impl/array-max.js";
export { arrayMap } from "./array/impl/array-map.js";
export { arrayContains } from "./array/impl/array-contains.js";
export { arrayNormalizeEmptyToUndefined } from "./array/impl/array-normalize-empty-to-undefined.js";
export { arrayNormalizeNullishToEmpty } from "./array/impl/array-normalize-nullish-to-empty.js";
export { arrayPushUnique } from "./array/impl/array-push-unique.js";
export { arrayRemoveMany } from "./array/impl/array-remove-many.js";
export { arrayRemoveOne } from "./array/impl/array-remove-one.js";
export { arrayReplaceOne } from "./array/impl/array-replace-one.js";
export { arraySetDifference } from "./array/impl/array-set-difference.js";
export { arraySymmetricDifference } from "./array/impl/array-symmetric-difference.js";
export { arrayUnion } from "./array/impl/array-union.js";
export { arrayUnique } from "./array/impl/array-unique.js";
export { dictionaryCloneExtend } from "./dictionary/impl/dictionary-clone-extend.js";
export { dictionaryExtend } from "./dictionary/impl/dictionary-extend.js";
export { dictionaryForEach } from "./dictionary/impl/dictionary-foreach.js";
export { dictionaryPairs } from "./dictionary/impl/dictionary-pairs.js";
export { dictionaryPush } from "./dictionary/impl/dictionary-push.js";
export { dictionaryValues } from "./dictionary/impl/dictionary-values.js";
export { equalityAllEqual } from "./equality/impl/equality-all-equal.js";
export { equalityAreConsistentlyDefined } from "./equality/impl/equality-are-consistently-defined.js";
export { Once } from "./decorators/once.js";
export { fpDebounce, TDebouncedFn } from "./fp/impl/fp-debounce.js";
export { fpIdentity } from "./fp/impl/fp-identity.js";
export { fpMaybeNewValue } from "./fp/impl/fp-maybe-new-value.js";
export { fpNoOp } from "./fp/impl/fp-no-op.js";
export { fpNormalizeToNull } from "./fp/impl/fp-normalize-to-null.js";
export { fpNormalizeToUndefined } from "./fp/impl/fp-normalize-to-undefined.js";
export { fpOnce } from "./fp/impl/fp-once.js";
export { promiseDelay } from "./promise/impl/promise-delay.js";
export { promiseRejectFalse } from "./promise/impl/promise-reject-false.js";
export { promiseRejectFalsey } from "./promise/impl/promise-reject-falsey.js";
export { fpValueOrNull } from "./fp/impl/fp-value-or-null.js";
export { promiseRejectNull } from "./promise/impl/promise-reject-null.js";
export { iteratorEmptyIterator } from "./iterators/impl/iterator-empty-iterator.js";
export { iteratorConsumeAll } from "./iterators/impl/iterator-consume-all.js";
export { IncrementalUpdater, IIncrementalUpdater, IIncrementallyUpdatable } from "./iterators/incremental-updater.js";
export { mapAddToSet } from "./map/impl/map-add-to-set.js";
export { mapArrayMap } from "./map/impl/map-array-map.js";
export { mapClearingDeleteFromSet } from "./map/impl/map-clearing-delete-from-set.js";
export { mapConcat } from "./map/impl/map-concat.js";
export { mapDeleteFromSet } from "./map/impl/map-delete-from-set.js";
export { mapDeleteGet } from "./map/impl/map-delete-get.js";
export { mapEntriesToArray } from "./map/impl/map-entries-to-array.js";
export { mapFirstKey } from "./map/impl/map-first-key.js";
export { mapFirstValue } from "./map/impl/map-first-value.js";
export { mapInitializeGet } from "./map/impl/map-intialize-get.js";
export { mapIntersect } from "./map/impl/map-intersect.js";
export { mapKeysToArray } from "./map/impl/map-keys-to-array.js";
export { mapPush } from "./map/impl/map-push.js";
export { mapRemoveManyFromArray } from "./map/impl/map-remove-many-from-array.js";
export { mapRemoveOneFromArray } from "./map/impl/map-remove-one-from-array.js";
export { mapReportingAddToSet } from "./map/impl/map-reporting-add-to-set.js";
export { mapSetDifference } from "./map/impl/map-set-difference.js";
export { mapSymmetricDifference } from "./map/impl/map-symmetric-difference.js";
export { mapUnion } from "./map/impl/map-union.js";
export { mapValuesToArray } from "./map/impl/map-values-to-array.js";
export { mathBound } from "./math/impl/math-bound.js";
export { mathBoundRandom } from "./math/impl/math-bound-random.js";
export { mathHypot2 } from "./math/impl/math-hypot.js";
export { mathMax } from "./math/impl/math-max.js";
export { mathMin } from "./math/impl/math-min.js";
export { numberGetHexString } from "./number/impl/number-get-hex-string.js";
export { IRandomNumberGenerator } from "./number/random-numbers/i-random-number-generator.js";
export { NotRandomGenerator } from "./number/random-numbers/not-random-generator.js";
export { Mulberry32Generator } from "./number/random-numbers/mulberry-32-generator.js";
export { pathJoin } from "./path/impl/path-join.js";
export { regexEscapeRegex } from "./reg-exp/impl/regex-escape-regex.js";
export { setIsSetEqual } from "./set/impl/set-is-set-equal.js";
export { setSetDifference } from "./set/impl/set-set-difference.js";
export { setSymmetricDifference } from "./set/impl/set-symmetric-difference.js";
export { setValuesToArray } from "./set/impl/set-values-to-array.js";
export { stringNormalizeEmptyToUndefined } from "./string/impl/string-normalize-empty-to-undefined.js";
export { stringNormalizeNullUndefinedToEmpty } from "./string/impl/string-normalize-null-undefined-to-empty.js";
export { ISharedArrayBindings } from "./web-assembly/shared-array/i-shared-array-bindings.js";
export { TSharedArrayPrefix } from "./web-assembly/shared-array/i-shared-array-bindings.js";
export { ISharedObject } from "./lifecycle/i-shared-object.js";
export { IRefCountedObject } from "./lifecycle/i-ref-counted-object.js";
export { IOnFree } from "./lifecycle/i-on-free.js";
export { IOnMemoryResize } from "./web-assembly/emscripten/i-on-memory-resize.js";
export { IIdentifierFactory } from "./identifier/impl/i-identifier-factory.js";
export { arrayMin } from "./array/impl/array-min.js";
export { IDebugWeakStore } from "./debug/i-debug-weak-store.js";
export { IDebugSharedObject } from "./debug/i-debug-shared-object.js";
export { IDebugWeakBroadcastEvent } from "./debug/debug-weak-broadcast-event.js";
export { IDebugSharedObjectLifeCycleChecker } from "./debug/debug-shared-object-life-cycle-checker.js";
export { TDebugListener } from "./debug/t-debug-listener.js";
export { setDefaultUnitTestFlags } from "./test-util/set-default-unit-test-flags.js";
declare global
{
interface IBuildConstants extends IDebugFlags
{
}
}