linqx 0.2.1 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +143 -3
- package/dist/core/dictionary.d.ts +15 -0
- package/dist/core/dictionary.d.ts.map +1 -0
- package/dist/core/enumerable.d.ts +10 -0
- package/dist/core/enumerable.d.ts.map +1 -0
- package/dist/core/enumerator.d.ts +11 -0
- package/dist/core/enumerator.d.ts.map +1 -0
- package/dist/core/grouping.d.ts +12 -0
- package/dist/core/grouping.d.ts.map +1 -0
- package/dist/core/lookup.d.ts +13 -0
- package/dist/core/lookup.d.ts.map +1 -0
- package/dist/core/memoized-enumerable.d.ts +13 -0
- package/dist/core/memoized-enumerable.d.ts.map +1 -0
- package/dist/core/ordered-enumerable.d.ts +15 -0
- package/dist/core/ordered-enumerable.d.ts.map +1 -0
- package/dist/core/shared-enumerable.d.ts +11 -0
- package/dist/core/shared-enumerable.d.ts.map +1 -0
- package/dist/extensions.d.ts +19 -0
- package/dist/extensions.d.ts.map +1 -0
- package/dist/extensions.js +13 -0
- package/dist/factories/choice.d.ts +9 -0
- package/dist/factories/choice.d.ts.map +1 -0
- package/dist/factories/cycle.d.ts +9 -0
- package/dist/factories/cycle.d.ts.map +1 -0
- package/dist/factories/defer.d.ts +9 -0
- package/dist/factories/defer.d.ts.map +1 -0
- package/dist/factories/empty.d.ts +4 -0
- package/dist/factories/empty.d.ts.map +1 -0
- package/dist/factories/from.d.ts +47 -0
- package/dist/factories/from.d.ts.map +1 -0
- package/dist/factories/generate.d.ts +10 -0
- package/dist/factories/generate.d.ts.map +1 -0
- package/dist/factories/make.d.ts +9 -0
- package/dist/factories/make.d.ts.map +1 -0
- package/dist/factories/matches.d.ts +15 -0
- package/dist/factories/matches.d.ts.map +1 -0
- package/dist/factories/range-down.d.ts +11 -0
- package/dist/factories/range-down.d.ts.map +1 -0
- package/dist/factories/range-to.d.ts +13 -0
- package/dist/factories/range-to.d.ts.map +1 -0
- package/dist/factories/range.d.ts +11 -0
- package/dist/factories/range.d.ts.map +1 -0
- package/dist/factories/repeat-with-finalize.d.ts +10 -0
- package/dist/factories/repeat-with-finalize.d.ts.map +1 -0
- package/dist/factories/repeat.d.ts +10 -0
- package/dist/factories/repeat.d.ts.map +1 -0
- package/dist/factories/to-infinity.d.ts +10 -0
- package/dist/factories/to-infinity.d.ts.map +1 -0
- package/dist/factories/to-negative-infinity.d.ts +10 -0
- package/dist/factories/to-negative-infinity.d.ts.map +1 -0
- package/dist/factories/unfold.d.ts +10 -0
- package/dist/factories/unfold.d.ts.map +1 -0
- package/dist/index.d.ts +88 -3
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +2 -4
- package/dist/internal/create-enumerable.d.ts +4 -0
- package/dist/internal/create-enumerable.d.ts.map +1 -0
- package/dist/internal/functions.d.ts +7 -0
- package/dist/internal/functions.d.ts.map +1 -0
- package/dist/internal/to-iterable.d.ts +3 -0
- package/dist/internal/to-iterable.d.ts.map +1 -0
- package/dist/operators/aggregate-by.d.ts +3 -0
- package/dist/operators/aggregate-by.d.ts.map +1 -0
- package/dist/operators/aggregate.d.ts +3 -0
- package/dist/operators/aggregate.d.ts.map +1 -0
- package/dist/operators/all.d.ts +3 -0
- package/dist/operators/all.d.ts.map +1 -0
- package/dist/operators/alternate.d.ts +3 -0
- package/dist/operators/alternate.d.ts.map +1 -0
- package/dist/operators/any.d.ts +3 -0
- package/dist/operators/any.d.ts.map +1 -0
- package/dist/operators/append.d.ts +3 -0
- package/dist/operators/append.d.ts.map +1 -0
- package/dist/operators/as-enumerable.d.ts +3 -0
- package/dist/operators/as-enumerable.d.ts.map +1 -0
- package/dist/operators/average.d.ts +3 -0
- package/dist/operators/average.d.ts.map +1 -0
- package/dist/operators/buffer.d.ts +3 -0
- package/dist/operators/buffer.d.ts.map +1 -0
- package/dist/operators/cast.d.ts +3 -0
- package/dist/operators/cast.d.ts.map +1 -0
- package/dist/operators/catch-error.d.ts +3 -0
- package/dist/operators/catch-error.d.ts.map +1 -0
- package/dist/operators/choose.d.ts +3 -0
- package/dist/operators/choose.d.ts.map +1 -0
- package/dist/operators/chunk.d.ts +3 -0
- package/dist/operators/chunk.d.ts.map +1 -0
- package/dist/operators/concat.d.ts +3 -0
- package/dist/operators/concat.d.ts.map +1 -0
- package/dist/operators/contains.d.ts +3 -0
- package/dist/operators/contains.d.ts.map +1 -0
- package/dist/operators/count-by.d.ts +3 -0
- package/dist/operators/count-by.d.ts.map +1 -0
- package/dist/operators/count.d.ts +3 -0
- package/dist/operators/count.d.ts.map +1 -0
- package/dist/operators/create-ordered-enumerable.d.ts +3 -0
- package/dist/operators/create-ordered-enumerable.d.ts.map +1 -0
- package/dist/operators/default-if-empty.d.ts +3 -0
- package/dist/operators/default-if-empty.d.ts.map +1 -0
- package/dist/operators/distinct-by.d.ts +3 -0
- package/dist/operators/distinct-by.d.ts.map +1 -0
- package/dist/operators/distinct-until-changed.d.ts +3 -0
- package/dist/operators/distinct-until-changed.d.ts.map +1 -0
- package/dist/operators/distinct.d.ts +3 -0
- package/dist/operators/distinct.d.ts.map +1 -0
- package/dist/operators/do-action.d.ts +4 -0
- package/dist/operators/do-action.d.ts.map +1 -0
- package/dist/operators/element-at-or-default.d.ts +3 -0
- package/dist/operators/element-at-or-default.d.ts.map +1 -0
- package/dist/operators/element-at.d.ts +3 -0
- package/dist/operators/element-at.d.ts.map +1 -0
- package/dist/operators/except-by.d.ts +3 -0
- package/dist/operators/except-by.d.ts.map +1 -0
- package/dist/operators/except.d.ts +3 -0
- package/dist/operators/except.d.ts.map +1 -0
- package/dist/operators/finally-action.d.ts +3 -0
- package/dist/operators/finally-action.d.ts.map +1 -0
- package/dist/operators/first-or-default.d.ts +3 -0
- package/dist/operators/first-or-default.d.ts.map +1 -0
- package/dist/operators/first.d.ts +3 -0
- package/dist/operators/first.d.ts.map +1 -0
- package/dist/operators/flatten.d.ts +3 -0
- package/dist/operators/flatten.d.ts.map +1 -0
- package/dist/operators/for-each.d.ts +4 -0
- package/dist/operators/for-each.d.ts.map +1 -0
- package/dist/operators/force.d.ts +3 -0
- package/dist/operators/force.d.ts.map +1 -0
- package/dist/operators/group-by.d.ts +3 -0
- package/dist/operators/group-by.d.ts.map +1 -0
- package/dist/operators/group-join.d.ts +3 -0
- package/dist/operators/group-join.d.ts.map +1 -0
- package/dist/operators/index-of.d.ts +3 -0
- package/dist/operators/index-of.d.ts.map +1 -0
- package/dist/operators/index.d.ts +3 -0
- package/dist/operators/index.d.ts.map +1 -0
- package/dist/operators/insert.d.ts +3 -0
- package/dist/operators/insert.d.ts.map +1 -0
- package/dist/operators/intersect-by.d.ts +3 -0
- package/dist/operators/intersect-by.d.ts.map +1 -0
- package/dist/operators/intersect.d.ts +3 -0
- package/dist/operators/intersect.d.ts.map +1 -0
- package/dist/operators/is-empty.d.ts +3 -0
- package/dist/operators/is-empty.d.ts.map +1 -0
- package/dist/operators/join-with.d.ts +3 -0
- package/dist/operators/join-with.d.ts.map +1 -0
- package/dist/operators/join.d.ts +3 -0
- package/dist/operators/join.d.ts.map +1 -0
- package/dist/operators/last-index-of.d.ts +3 -0
- package/dist/operators/last-index-of.d.ts.map +1 -0
- package/dist/operators/last-or-default.d.ts +3 -0
- package/dist/operators/last-or-default.d.ts.map +1 -0
- package/dist/operators/last.d.ts +3 -0
- package/dist/operators/last.d.ts.map +1 -0
- package/dist/operators/left-join.d.ts +3 -0
- package/dist/operators/left-join.d.ts.map +1 -0
- package/dist/operators/let-bind.d.ts +3 -0
- package/dist/operators/let-bind.d.ts.map +1 -0
- package/dist/operators/log.d.ts +3 -0
- package/dist/operators/log.d.ts.map +1 -0
- package/dist/operators/map.d.ts +3 -0
- package/dist/operators/map.d.ts.map +1 -0
- package/dist/operators/max-by.d.ts +3 -0
- package/dist/operators/max-by.d.ts.map +1 -0
- package/dist/operators/max.d.ts +3 -0
- package/dist/operators/max.d.ts.map +1 -0
- package/dist/operators/memoize.d.ts +3 -0
- package/dist/operators/memoize.d.ts.map +1 -0
- package/dist/operators/merge.d.ts +3 -0
- package/dist/operators/merge.d.ts.map +1 -0
- package/dist/operators/min-by.d.ts +3 -0
- package/dist/operators/min-by.d.ts.map +1 -0
- package/dist/operators/min.d.ts +3 -0
- package/dist/operators/min.d.ts.map +1 -0
- package/dist/operators/of-type.d.ts +3 -0
- package/dist/operators/of-type.d.ts.map +1 -0
- package/dist/operators/operators.d.ts +209 -0
- package/dist/operators/operators.d.ts.map +1 -0
- package/dist/operators/order-by-descending.d.ts +3 -0
- package/dist/operators/order-by-descending.d.ts.map +1 -0
- package/dist/operators/order-by.d.ts +3 -0
- package/dist/operators/order-by.d.ts.map +1 -0
- package/dist/operators/page.d.ts +3 -0
- package/dist/operators/page.d.ts.map +1 -0
- package/dist/operators/pairwise.d.ts +3 -0
- package/dist/operators/pairwise.d.ts.map +1 -0
- package/dist/operators/partition-by.d.ts +3 -0
- package/dist/operators/partition-by.d.ts.map +1 -0
- package/dist/operators/position.d.ts +3 -0
- package/dist/operators/position.d.ts.map +1 -0
- package/dist/operators/prepend.d.ts +3 -0
- package/dist/operators/prepend.d.ts.map +1 -0
- package/dist/operators/reverse.d.ts +3 -0
- package/dist/operators/reverse.d.ts.map +1 -0
- package/dist/operators/right-join.d.ts +3 -0
- package/dist/operators/right-join.d.ts.map +1 -0
- package/dist/operators/scan.d.ts +3 -0
- package/dist/operators/scan.d.ts.map +1 -0
- package/dist/operators/select-many.d.ts +3 -0
- package/dist/operators/select-many.d.ts.map +1 -0
- package/dist/operators/select.d.ts +3 -0
- package/dist/operators/select.d.ts.map +1 -0
- package/dist/operators/sequence-equal.d.ts +3 -0
- package/dist/operators/sequence-equal.d.ts.map +1 -0
- package/dist/operators/share.d.ts +3 -0
- package/dist/operators/share.d.ts.map +1 -0
- package/dist/operators/shuffle.d.ts +3 -0
- package/dist/operators/shuffle.d.ts.map +1 -0
- package/dist/operators/single-or-default.d.ts +3 -0
- package/dist/operators/single-or-default.d.ts.map +1 -0
- package/dist/operators/single.d.ts +3 -0
- package/dist/operators/single.d.ts.map +1 -0
- package/dist/operators/skip-last.d.ts +3 -0
- package/dist/operators/skip-last.d.ts.map +1 -0
- package/dist/operators/skip-while.d.ts +3 -0
- package/dist/operators/skip-while.d.ts.map +1 -0
- package/dist/operators/skip.d.ts +3 -0
- package/dist/operators/skip.d.ts.map +1 -0
- package/dist/operators/sum.d.ts +3 -0
- package/dist/operators/sum.d.ts.map +1 -0
- package/dist/operators/take-except-last.d.ts +3 -0
- package/dist/operators/take-except-last.d.ts.map +1 -0
- package/dist/operators/take-from-last.d.ts +3 -0
- package/dist/operators/take-from-last.d.ts.map +1 -0
- package/dist/operators/take-last.d.ts +3 -0
- package/dist/operators/take-last.d.ts.map +1 -0
- package/dist/operators/take-while.d.ts +3 -0
- package/dist/operators/take-while.d.ts.map +1 -0
- package/dist/operators/take.d.ts +3 -0
- package/dist/operators/take.d.ts.map +1 -0
- package/dist/operators/then-by-descending.d.ts +3 -0
- package/dist/operators/then-by-descending.d.ts.map +1 -0
- package/dist/operators/then-by.d.ts +3 -0
- package/dist/operators/then-by.d.ts.map +1 -0
- package/dist/operators/to-array.d.ts +3 -0
- package/dist/operators/to-array.d.ts.map +1 -0
- package/dist/operators/to-dictionary.d.ts +3 -0
- package/dist/operators/to-dictionary.d.ts.map +1 -0
- package/dist/operators/to-joined-string.d.ts +3 -0
- package/dist/operators/to-joined-string.d.ts.map +1 -0
- package/dist/operators/to-json-string.d.ts +3 -0
- package/dist/operators/to-json-string.d.ts.map +1 -0
- package/dist/operators/to-lookup.d.ts +3 -0
- package/dist/operators/to-lookup.d.ts.map +1 -0
- package/dist/operators/to-map.d.ts +3 -0
- package/dist/operators/to-map.d.ts.map +1 -0
- package/dist/operators/to-object.d.ts +3 -0
- package/dist/operators/to-object.d.ts.map +1 -0
- package/dist/operators/to-set.d.ts +3 -0
- package/dist/operators/to-set.d.ts.map +1 -0
- package/dist/operators/trace.d.ts +3 -0
- package/dist/operators/trace.d.ts.map +1 -0
- package/dist/operators/traverse-breadth-first.d.ts +3 -0
- package/dist/operators/traverse-breadth-first.d.ts.map +1 -0
- package/dist/operators/traverse-depth-first.d.ts +3 -0
- package/dist/operators/traverse-depth-first.d.ts.map +1 -0
- package/dist/operators/union-by.d.ts +3 -0
- package/dist/operators/union-by.d.ts.map +1 -0
- package/dist/operators/union.d.ts +3 -0
- package/dist/operators/union.d.ts.map +1 -0
- package/dist/operators/weighted-sample.d.ts +3 -0
- package/dist/operators/weighted-sample.d.ts.map +1 -0
- package/dist/operators/where-if.d.ts +3 -0
- package/dist/operators/where-if.d.ts.map +1 -0
- package/dist/operators/where.d.ts +3 -0
- package/dist/operators/where.d.ts.map +1 -0
- package/dist/operators/with-neighbors.d.ts +3 -0
- package/dist/operators/with-neighbors.d.ts.map +1 -0
- package/dist/operators/zip.d.ts +3 -0
- package/dist/operators/zip.d.ts.map +1 -0
- package/dist/src-D_Mk3oMP.js +1597 -0
- package/dist/types.d.ts +1155 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/utils.d.ts +57 -0
- package/dist/utils.d.ts.map +1 -0
- package/package.json +21 -11
- package/dist/linq.d.ts +0 -256
- package/dist/linq.js +0 -3085
- package/dist/linqx.d.ts +0 -36
- package/dist/linqx.js +0 -153
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"last-index-of.d.ts","sourceRoot":"","sources":["../../src/operators/last-index-of.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,WAAW,CAAC,CAAC,EAC3B,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,eAAe,EAAE,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,OAAO,CAAC,GAC5D,MAAM,CAgBR"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { IEnumerable } from '../types.js';
|
|
2
|
+
export declare function lastOrDefault<T, TDefault>(this: IEnumerable<T>, predicateOrDefault?: ((element: T, index: number) => boolean) | TDefault, defaultValue?: TDefault): T | TDefault | undefined;
|
|
3
|
+
//# sourceMappingURL=last-or-default.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"last-or-default.d.ts","sourceRoot":"","sources":["../../src/operators/last-or-default.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,aAAa,CAAC,CAAC,EAAE,QAAQ,EACvC,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,kBAAkB,CAAC,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,OAAO,CAAC,GAAG,QAAQ,EACxE,YAAY,CAAC,EAAE,QAAQ,GACtB,CAAC,GAAG,QAAQ,GAAG,SAAS,CAiB1B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"last.d.ts","sourceRoot":"","sources":["../../src/operators/last.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,IAAI,CAAC,CAAC,EACpB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,SAAS,CAAC,EAAE,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,OAAO,GACjD,CAAC,CAiBH"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { EnumerableInput, IEnumerable } from '../types.js';
|
|
2
|
+
export declare function leftJoin<TOuter, TInner, TKey, TResult>(this: IEnumerable<TOuter>, inner: EnumerableInput<TInner>, outerKeySelector: (outer: TOuter) => TKey, innerKeySelector: (inner: TInner) => TKey, resultSelector: (outer: TOuter, inner: TInner | null) => TResult, compareSelector?: (key: TKey) => unknown): IEnumerable<TResult>;
|
|
3
|
+
//# sourceMappingURL=left-join.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"left-join.d.ts","sourceRoot":"","sources":["../../src/operators/left-join.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAKhE,wBAAgB,QAAQ,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EACpD,IAAI,EAAE,WAAW,CAAC,MAAM,CAAC,EACzB,KAAK,EAAE,eAAe,CAAC,MAAM,CAAC,EAC9B,gBAAgB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,EACzC,gBAAgB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,EACzC,cAAc,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI,KAAK,OAAO,EAChE,eAAe,GAAE,CAAC,GAAG,EAAE,IAAI,KAAK,OAAkB,GACjD,WAAW,CAAC,OAAO,CAAC,CA2BtB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"let-bind.d.ts","sourceRoot":"","sources":["../../src/operators/let-bind.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAIhE,wBAAgB,OAAO,CAAC,CAAC,EAAE,OAAO,EAChC,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,IAAI,EAAE,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC,CAAC,KAAK,eAAe,CAAC,OAAO,CAAC,GACzD,WAAW,CAAC,OAAO,CAAC,CAGtB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"log.d.ts","sourceRoot":"","sources":["../../src/operators/log.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,GAAG,CAAC,CAAC,EAAE,MAAM,GAAG,CAAC,EAC/B,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,QAAQ,GAAE,CAAC,OAAO,EAAE,CAAC,KAAK,MAA2C,GACpE,WAAW,CAAC,CAAC,CAAC,CAIhB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"map.d.ts","sourceRoot":"","sources":["../../src/operators/map.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,GAAG,CAAC,CAAC,EAAE,OAAO,EAC5B,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,QAAQ,EAAE,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,OAAO,GAC/C,OAAO,EAAE,CAEX"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"max-by.d.ts","sourceRoot":"","sources":["../../src/operators/max-by.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,KAAK,CAAC,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,WAAW,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,IAAI,GAAG,CAAC,CAiBzF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"max.d.ts","sourceRoot":"","sources":["../../src/operators/max.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,GAAG,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,QAAQ,GAAE,CAAC,OAAO,EAAE,CAAC,KAAK,MAAe,GAAG,MAAM,CAO9F"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"memoize.d.ts","sourceRoot":"","sources":["../../src/operators/memoize.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAGtE,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,qBAAqB,CAAC,CAAC,CAAC,CAEzE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"merge.d.ts","sourceRoot":"","sources":["../../src/operators/merge.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAIhE,wBAAgB,KAAK,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,GAAG,MAAM,EAAE,eAAe,CAAC,CAAC,CAAC,EAAE,GAAG,WAAW,CAAC,CAAC,CAAC,CAiB9F"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"min-by.d.ts","sourceRoot":"","sources":["../../src/operators/min-by.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,KAAK,CAAC,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,WAAW,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,IAAI,GAAG,CAAC,CAiBzF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"min.d.ts","sourceRoot":"","sources":["../../src/operators/min.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,GAAG,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,QAAQ,GAAE,CAAC,OAAO,EAAE,CAAC,KAAK,MAAe,GAAG,MAAM,CAO9F"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"of-type.d.ts","sourceRoot":"","sources":["../../src/operators/of-type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,MAAM,CAAC,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,OAAO,GAAG,WAAW,CAAC,OAAO,CAAC,CAqB5F"}
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
import { aggregate } from './aggregate.js';
|
|
2
|
+
import { aggregateBy } from './aggregate-by.js';
|
|
3
|
+
import { all } from './all.js';
|
|
4
|
+
import { alternate } from './alternate.js';
|
|
5
|
+
import { any } from './any.js';
|
|
6
|
+
import { append } from './append.js';
|
|
7
|
+
import { asEnumerable } from './as-enumerable.js';
|
|
8
|
+
import { average } from './average.js';
|
|
9
|
+
import { buffer } from './buffer.js';
|
|
10
|
+
import { cast } from './cast.js';
|
|
11
|
+
import { catchError } from './catch-error.js';
|
|
12
|
+
import { choose } from './choose.js';
|
|
13
|
+
import { chunk } from './chunk.js';
|
|
14
|
+
import { concat } from './concat.js';
|
|
15
|
+
import { contains } from './contains.js';
|
|
16
|
+
import { count } from './count.js';
|
|
17
|
+
import { countBy } from './count-by.js';
|
|
18
|
+
import { createOrderedEnumerable } from './create-ordered-enumerable.js';
|
|
19
|
+
import { defaultIfEmpty } from './default-if-empty.js';
|
|
20
|
+
import { distinct } from './distinct.js';
|
|
21
|
+
import { distinctBy } from './distinct-by.js';
|
|
22
|
+
import { distinctUntilChanged } from './distinct-until-changed.js';
|
|
23
|
+
import { doAction } from './do-action.js';
|
|
24
|
+
import { elementAt } from './element-at.js';
|
|
25
|
+
import { elementAtOrDefault } from './element-at-or-default.js';
|
|
26
|
+
import { except } from './except.js';
|
|
27
|
+
import { exceptBy } from './except-by.js';
|
|
28
|
+
import { finallyAction } from './finally-action.js';
|
|
29
|
+
import { first } from './first.js';
|
|
30
|
+
import { firstOrDefault } from './first-or-default.js';
|
|
31
|
+
import { flatten } from './flatten.js';
|
|
32
|
+
import { force } from './force.js';
|
|
33
|
+
import { forEach } from './for-each.js';
|
|
34
|
+
import { groupBy } from './group-by.js';
|
|
35
|
+
import { groupJoin } from './group-join.js';
|
|
36
|
+
import { index } from './index.js';
|
|
37
|
+
import { indexOf } from './index-of.js';
|
|
38
|
+
import { insert } from './insert.js';
|
|
39
|
+
import { intersect } from './intersect.js';
|
|
40
|
+
import { intersectBy } from './intersect-by.js';
|
|
41
|
+
import { isEmpty } from './is-empty.js';
|
|
42
|
+
import { join } from './join.js';
|
|
43
|
+
import { joinWith } from './join-with.js';
|
|
44
|
+
import { last } from './last.js';
|
|
45
|
+
import { lastIndexOf } from './last-index-of.js';
|
|
46
|
+
import { lastOrDefault } from './last-or-default.js';
|
|
47
|
+
import { leftJoin } from './left-join.js';
|
|
48
|
+
import { letBind } from './let-bind.js';
|
|
49
|
+
import { log } from './log.js';
|
|
50
|
+
import { map } from './map.js';
|
|
51
|
+
import { max } from './max.js';
|
|
52
|
+
import { maxBy } from './max-by.js';
|
|
53
|
+
import { memoize } from './memoize.js';
|
|
54
|
+
import { merge } from './merge.js';
|
|
55
|
+
import { min } from './min.js';
|
|
56
|
+
import { minBy } from './min-by.js';
|
|
57
|
+
import { ofType } from './of-type.js';
|
|
58
|
+
import { orderBy } from './order-by.js';
|
|
59
|
+
import { orderByDescending } from './order-by-descending.js';
|
|
60
|
+
import { page } from './page.js';
|
|
61
|
+
import { pairwise } from './pairwise.js';
|
|
62
|
+
import { partitionBy } from './partition-by.js';
|
|
63
|
+
import { position } from './position.js';
|
|
64
|
+
import { prepend } from './prepend.js';
|
|
65
|
+
import { reverse } from './reverse.js';
|
|
66
|
+
import { rightJoin } from './right-join.js';
|
|
67
|
+
import { scan } from './scan.js';
|
|
68
|
+
import { select } from './select.js';
|
|
69
|
+
import { selectMany } from './select-many.js';
|
|
70
|
+
import { sequenceEqual } from './sequence-equal.js';
|
|
71
|
+
import { share } from './share.js';
|
|
72
|
+
import { shuffle } from './shuffle.js';
|
|
73
|
+
import { single } from './single.js';
|
|
74
|
+
import { singleOrDefault } from './single-or-default.js';
|
|
75
|
+
import { skip } from './skip.js';
|
|
76
|
+
import { skipLast } from './skip-last.js';
|
|
77
|
+
import { skipWhile } from './skip-while.js';
|
|
78
|
+
import { sum } from './sum.js';
|
|
79
|
+
import { take } from './take.js';
|
|
80
|
+
import { takeExceptLast } from './take-except-last.js';
|
|
81
|
+
import { takeFromLast } from './take-from-last.js';
|
|
82
|
+
import { takeLast } from './take-last.js';
|
|
83
|
+
import { takeWhile } from './take-while.js';
|
|
84
|
+
import { thenBy } from './then-by.js';
|
|
85
|
+
import { thenByDescending } from './then-by-descending.js';
|
|
86
|
+
import { toArray } from './to-array.js';
|
|
87
|
+
import { toDictionary } from './to-dictionary.js';
|
|
88
|
+
import { toJoinedString } from './to-joined-string.js';
|
|
89
|
+
import { toJSONString } from './to-json-string.js';
|
|
90
|
+
import { toLookup } from './to-lookup.js';
|
|
91
|
+
import { toMap } from './to-map.js';
|
|
92
|
+
import { toObject } from './to-object.js';
|
|
93
|
+
import { toSet } from './to-set.js';
|
|
94
|
+
import { trace } from './trace.js';
|
|
95
|
+
import { traverseBreadthFirst } from './traverse-breadth-first.js';
|
|
96
|
+
import { traverseDepthFirst } from './traverse-depth-first.js';
|
|
97
|
+
import { union } from './union.js';
|
|
98
|
+
import { unionBy } from './union-by.js';
|
|
99
|
+
import { weightedSample } from './weighted-sample.js';
|
|
100
|
+
import { where } from './where.js';
|
|
101
|
+
import { whereIf } from './where-if.js';
|
|
102
|
+
import { withNeighbors } from './with-neighbors.js';
|
|
103
|
+
import { zip } from './zip.js';
|
|
104
|
+
export declare const instanceOperators: {
|
|
105
|
+
aggregate: typeof aggregate;
|
|
106
|
+
aggregateBy: typeof aggregateBy;
|
|
107
|
+
all: typeof all;
|
|
108
|
+
alternate: typeof alternate;
|
|
109
|
+
any: typeof any;
|
|
110
|
+
append: typeof append;
|
|
111
|
+
asEnumerable: typeof asEnumerable;
|
|
112
|
+
average: typeof average;
|
|
113
|
+
buffer: typeof buffer;
|
|
114
|
+
cast: typeof cast;
|
|
115
|
+
catchError: typeof catchError;
|
|
116
|
+
choose: typeof choose;
|
|
117
|
+
chunk: typeof chunk;
|
|
118
|
+
concat: typeof concat;
|
|
119
|
+
contains: typeof contains;
|
|
120
|
+
count: typeof count;
|
|
121
|
+
countBy: typeof countBy;
|
|
122
|
+
createOrderedEnumerable: typeof createOrderedEnumerable;
|
|
123
|
+
defaultIfEmpty: typeof defaultIfEmpty;
|
|
124
|
+
distinct: typeof distinct;
|
|
125
|
+
distinctBy: typeof distinctBy;
|
|
126
|
+
distinctUntilChanged: typeof distinctUntilChanged;
|
|
127
|
+
doAction: typeof doAction;
|
|
128
|
+
elementAt: typeof elementAt;
|
|
129
|
+
elementAtOrDefault: typeof elementAtOrDefault;
|
|
130
|
+
except: typeof except;
|
|
131
|
+
exceptBy: typeof exceptBy;
|
|
132
|
+
finallyAction: typeof finallyAction;
|
|
133
|
+
first: typeof first;
|
|
134
|
+
firstOrDefault: typeof firstOrDefault;
|
|
135
|
+
flatten: typeof flatten;
|
|
136
|
+
force: typeof force;
|
|
137
|
+
forEach: typeof forEach;
|
|
138
|
+
groupBy: typeof groupBy;
|
|
139
|
+
groupJoin: typeof groupJoin;
|
|
140
|
+
index: typeof index;
|
|
141
|
+
indexOf: typeof indexOf;
|
|
142
|
+
insert: typeof insert;
|
|
143
|
+
intersect: typeof intersect;
|
|
144
|
+
intersectBy: typeof intersectBy;
|
|
145
|
+
isEmpty: typeof isEmpty;
|
|
146
|
+
join: typeof join;
|
|
147
|
+
joinWith: typeof joinWith;
|
|
148
|
+
last: typeof last;
|
|
149
|
+
lastIndexOf: typeof lastIndexOf;
|
|
150
|
+
lastOrDefault: typeof lastOrDefault;
|
|
151
|
+
leftJoin: typeof leftJoin;
|
|
152
|
+
letBind: typeof letBind;
|
|
153
|
+
log: typeof log;
|
|
154
|
+
map: typeof map;
|
|
155
|
+
max: typeof max;
|
|
156
|
+
maxBy: typeof maxBy;
|
|
157
|
+
memoize: typeof memoize;
|
|
158
|
+
merge: typeof merge;
|
|
159
|
+
min: typeof min;
|
|
160
|
+
minBy: typeof minBy;
|
|
161
|
+
ofType: typeof ofType;
|
|
162
|
+
orderBy: typeof orderBy;
|
|
163
|
+
orderByDescending: typeof orderByDescending;
|
|
164
|
+
page: typeof page;
|
|
165
|
+
pairwise: typeof pairwise;
|
|
166
|
+
partitionBy: typeof partitionBy;
|
|
167
|
+
position: typeof position;
|
|
168
|
+
prepend: typeof prepend;
|
|
169
|
+
reverse: typeof reverse;
|
|
170
|
+
rightJoin: typeof rightJoin;
|
|
171
|
+
scan: typeof scan;
|
|
172
|
+
select: typeof select;
|
|
173
|
+
selectMany: typeof selectMany;
|
|
174
|
+
sequenceEqual: typeof sequenceEqual;
|
|
175
|
+
share: typeof share;
|
|
176
|
+
shuffle: typeof shuffle;
|
|
177
|
+
single: typeof single;
|
|
178
|
+
singleOrDefault: typeof singleOrDefault;
|
|
179
|
+
skip: typeof skip;
|
|
180
|
+
skipLast: typeof skipLast;
|
|
181
|
+
skipWhile: typeof skipWhile;
|
|
182
|
+
sum: typeof sum;
|
|
183
|
+
take: typeof take;
|
|
184
|
+
takeExceptLast: typeof takeExceptLast;
|
|
185
|
+
takeFromLast: typeof takeFromLast;
|
|
186
|
+
takeLast: typeof takeLast;
|
|
187
|
+
takeWhile: typeof takeWhile;
|
|
188
|
+
thenBy: typeof thenBy;
|
|
189
|
+
thenByDescending: typeof thenByDescending;
|
|
190
|
+
toArray: typeof toArray;
|
|
191
|
+
toDictionary: typeof toDictionary;
|
|
192
|
+
toJoinedString: typeof toJoinedString;
|
|
193
|
+
toJSONString: typeof toJSONString;
|
|
194
|
+
toLookup: typeof toLookup;
|
|
195
|
+
toMap: typeof toMap;
|
|
196
|
+
toObject: typeof toObject;
|
|
197
|
+
toSet: typeof toSet;
|
|
198
|
+
trace: typeof trace;
|
|
199
|
+
traverseBreadthFirst: typeof traverseBreadthFirst;
|
|
200
|
+
traverseDepthFirst: typeof traverseDepthFirst;
|
|
201
|
+
union: typeof union;
|
|
202
|
+
unionBy: typeof unionBy;
|
|
203
|
+
weightedSample: typeof weightedSample;
|
|
204
|
+
where: typeof where;
|
|
205
|
+
whereIf: typeof whereIf;
|
|
206
|
+
withNeighbors: typeof withNeighbors;
|
|
207
|
+
zip: typeof zip;
|
|
208
|
+
};
|
|
209
|
+
//# sourceMappingURL=operators.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operators.d.ts","sourceRoot":"","sources":["../../src/operators/operators.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { Comparer, IEnumerable, IOrderedEnumerable } from '../types.js';
|
|
2
|
+
export declare function orderByDescending<T, TKey>(this: IEnumerable<T>, keySelector: (element: T) => TKey, comparer?: Comparer<TKey>): IOrderedEnumerable<T>;
|
|
3
|
+
//# sourceMappingURL=order-by-descending.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"order-by-descending.d.ts","sourceRoot":"","sources":["../../src/operators/order-by-descending.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAI7E,wBAAgB,iBAAiB,CAAC,CAAC,EAAE,IAAI,EACvC,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,WAAW,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,IAAI,EACjC,QAAQ,GAAE,QAAQ,CAAC,IAAI,CAAmB,GACzC,kBAAkB,CAAC,CAAC,CAAC,CAMvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"order-by.d.ts","sourceRoot":"","sources":["../../src/operators/order-by.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAI7E,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,EAC7B,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,WAAW,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,IAAI,EACjC,QAAQ,GAAE,QAAQ,CAAC,IAAI,CAAmB,GACzC,kBAAkB,CAAC,CAAC,CAAC,CAMvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"page.d.ts","sourceRoot":"","sources":["../../src/operators/page.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAE1D,wBAAgB,IAAI,CAAC,CAAC,EACpB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,gBAAgB,EAAE,MAAM,GAAG,SAAS,EACpC,QAAQ,CAAC,EAAE,MAAM,GAChB,WAAW,CAAC,CAAC,CAAC,CAShB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pairwise.d.ts","sourceRoot":"","sources":["../../src/operators/pairwise.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,QAAQ,CAAC,CAAC,EAAE,OAAO,EACjC,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,QAAQ,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,OAAO,EAAE,CAAC,KAAK,OAAO,GACzC,WAAW,CAAC,OAAO,CAAC,CAetB"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { IEnumerable, IGrouping } from '../types.js';
|
|
2
|
+
export declare function partitionBy<T, TKey, TElement = T, TResult = IGrouping<TKey, TElement>>(this: IEnumerable<T>, keySelector: (element: T) => TKey, elementSelector?: (element: T) => TElement, resultSelector?: ((key: TKey, elements: IEnumerable<TElement>) => TResult) | undefined, compareSelector?: (key: TKey) => unknown): IEnumerable<TResult>;
|
|
3
|
+
//# sourceMappingURL=partition-by.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"partition-by.d.ts","sourceRoot":"","sources":["../../src/operators/partition-by.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAK1D,wBAAgB,WAAW,CAAC,CAAC,EAAE,IAAI,EAAE,QAAQ,GAAG,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC,IAAI,EAAE,QAAQ,CAAC,EACpF,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,WAAW,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,IAAI,EACjC,eAAe,GAAE,CAAC,OAAO,EAAE,CAAC,KAAK,QAA+C,EAChF,cAAc,GAAE,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,CAAC,QAAQ,CAAC,KAAK,OAAO,CAAC,GAAG,SAAqB,EACjG,eAAe,GAAE,CAAC,GAAG,EAAE,IAAI,KAAK,OAAkB,GACjD,WAAW,CAAC,OAAO,CAAC,CAkCtB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"position.d.ts","sourceRoot":"","sources":["../../src/operators/position.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAG3D,wBAAgB,QAAQ,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CA4B5E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prepend.d.ts","sourceRoot":"","sources":["../../src/operators/prepend.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAM3E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reverse.d.ts","sourceRoot":"","sources":["../../src/operators/reverse.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAQ/D"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { EnumerableInput, IEnumerable } from '../types.js';
|
|
2
|
+
export declare function rightJoin<TOuter, TInner, TKey, TResult>(this: IEnumerable<TOuter>, inner: EnumerableInput<TInner>, outerKeySelector: (outer: TOuter) => TKey, innerKeySelector: (inner: TInner) => TKey, resultSelector: (outer: TOuter | null, inner: TInner) => TResult, compareSelector?: (key: TKey) => unknown): IEnumerable<TResult>;
|
|
3
|
+
//# sourceMappingURL=right-join.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"right-join.d.ts","sourceRoot":"","sources":["../../src/operators/right-join.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAKhE,wBAAgB,SAAS,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EACrD,IAAI,EAAE,WAAW,CAAC,MAAM,CAAC,EACzB,KAAK,EAAE,eAAe,CAAC,MAAM,CAAC,EAC9B,gBAAgB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,EACzC,gBAAgB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,EACzC,cAAc,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,EAAE,KAAK,EAAE,MAAM,KAAK,OAAO,EAChE,eAAe,GAAE,CAAC,GAAG,EAAE,IAAI,KAAK,OAAkB,GACjD,WAAW,CAAC,OAAO,CAAC,CA2BtB"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { IEnumerable } from '../types.js';
|
|
2
|
+
export declare function scan<T, TAccumulate>(this: IEnumerable<T>, seedOrFunc: TAccumulate | ((prev: T, current: T) => T), optionalFunc?: (prev: TAccumulate, current: T) => TAccumulate): IEnumerable<T | TAccumulate>;
|
|
3
|
+
//# sourceMappingURL=scan.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scan.d.ts","sourceRoot":"","sources":["../../src/operators/scan.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,IAAI,CAAC,CAAC,EAAE,WAAW,EACjC,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,UAAU,EAAE,WAAW,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,OAAO,EAAE,CAAC,KAAK,CAAC,CAAC,EACtD,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,WAAW,EAAE,OAAO,EAAE,CAAC,KAAK,WAAW,GAC5D,WAAW,CAAC,CAAC,GAAG,WAAW,CAAC,CAsB9B"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { EnumerableInput, IEnumerable } from '../types.js';
|
|
2
|
+
export declare function selectMany<T, TCollection, TResult = TCollection>(this: IEnumerable<T>, collectionSelector: (element: T, index: number) => EnumerableInput<TCollection>, resultSelector?: (outer: T, inner: TCollection) => TResult): IEnumerable<TCollection | TResult>;
|
|
3
|
+
//# sourceMappingURL=select-many.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"select-many.d.ts","sourceRoot":"","sources":["../../src/operators/select-many.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAIhE,wBAAgB,UAAU,CAAC,CAAC,EAAE,WAAW,EAAE,OAAO,GAAG,WAAW,EAC9D,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,kBAAkB,EAAE,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,eAAe,CAAC,WAAW,CAAC,EAC/E,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC,EAAE,KAAK,EAAE,WAAW,KAAK,OAAO,GACzD,WAAW,CAAC,WAAW,GAAG,OAAO,CAAC,CAUpC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../src/operators/select.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,MAAM,CAAC,CAAC,EAAE,OAAO,EAC/B,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,QAAQ,EAAE,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,OAAO,GAC/C,WAAW,CAAC,OAAO,CAAC,CAQtB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sequence-equal.d.ts","sourceRoot":"","sources":["../../src/operators/sequence-equal.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAIhE,wBAAgB,aAAa,CAAC,CAAC,EAAE,QAAQ,EACvC,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,MAAM,EAAE,eAAe,CAAC,CAAC,CAAC,EAC1B,eAAe,GAAE,CAAC,OAAO,EAAE,CAAC,KAAK,QAA+C,GAC/E,OAAO,CAgBT"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"share.d.ts","sourceRoot":"","sources":["../../src/operators/share.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAGtE,wBAAgB,KAAK,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,qBAAqB,CAAC,CAAC,CAAC,CAEvE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shuffle.d.ts","sourceRoot":"","sources":["../../src/operators/shuffle.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAU/D"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { IEnumerable } from '../types.js';
|
|
2
|
+
export declare function singleOrDefault<T, TDefault>(this: IEnumerable<T>, predicateOrDefault?: ((element: T, index: number) => boolean) | TDefault, defaultValue?: TDefault): T | TDefault | undefined;
|
|
3
|
+
//# sourceMappingURL=single-or-default.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"single-or-default.d.ts","sourceRoot":"","sources":["../../src/operators/single-or-default.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,eAAe,CAAC,CAAC,EAAE,QAAQ,EACzC,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,kBAAkB,CAAC,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,OAAO,CAAC,GAAG,QAAQ,EACxE,YAAY,CAAC,EAAE,QAAQ,GACtB,CAAC,GAAG,QAAQ,GAAG,SAAS,CAuB1B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"single.d.ts","sourceRoot":"","sources":["../../src/operators/single.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,MAAM,CAAC,CAAC,EACtB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,SAAS,CAAC,EAAE,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,OAAO,GACjD,CAAC,CAuBH"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"skip-last.d.ts","sourceRoot":"","sources":["../../src/operators/skip-last.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,QAAQ,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,MAAM,GAAG,WAAW,CAAC,CAAC,CAAC,CAE/E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"skip-while.d.ts","sourceRoot":"","sources":["../../src/operators/skip-while.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,SAAS,CAAC,CAAC,EACzB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,SAAS,EAAE,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,OAAO,GAChD,WAAW,CAAC,CAAC,CAAC,CAgBhB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"skip.d.ts","sourceRoot":"","sources":["../../src/operators/skip.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,IAAI,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,MAAM,GAAG,WAAW,CAAC,CAAC,CAAC,CAW3E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sum.d.ts","sourceRoot":"","sources":["../../src/operators/sum.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,GAAG,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,QAAQ,GAAE,CAAC,OAAO,EAAE,CAAC,KAAK,MAAe,GAAG,MAAM,CAO9F"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"take-except-last.d.ts","sourceRoot":"","sources":["../../src/operators/take-except-last.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,cAAc,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,KAAK,SAAI,GAAG,WAAW,CAAC,CAAC,CAAC,CAiBjF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"take-from-last.d.ts","sourceRoot":"","sources":["../../src/operators/take-from-last.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,YAAY,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,MAAM,GAAG,WAAW,CAAC,CAAC,CAAC,CAkBnF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"take-last.d.ts","sourceRoot":"","sources":["../../src/operators/take-last.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,QAAQ,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,MAAM,GAAG,WAAW,CAAC,CAAC,CAAC,CAE/E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"take-while.d.ts","sourceRoot":"","sources":["../../src/operators/take-while.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,SAAS,CAAC,CAAC,EACzB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,SAAS,EAAE,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,OAAO,GAChD,WAAW,CAAC,CAAC,CAAC,CAYhB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"take.d.ts","sourceRoot":"","sources":["../../src/operators/take.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,IAAI,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,MAAM,GAAG,WAAW,CAAC,CAAC,CAAC,CAgB3E"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { Comparer, IOrderedEnumerable } from '../types.js';
|
|
2
|
+
export declare function thenByDescending<T, TKey>(this: IOrderedEnumerable<T>, keySelector: (element: T) => TKey, comparer?: Comparer<TKey>): IOrderedEnumerable<T>;
|
|
3
|
+
//# sourceMappingURL=then-by-descending.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"then-by-descending.d.ts","sourceRoot":"","sources":["../../src/operators/then-by-descending.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAEhE,wBAAgB,gBAAgB,CAAC,CAAC,EAAE,IAAI,EACtC,IAAI,EAAE,kBAAkB,CAAC,CAAC,CAAC,EAC3B,WAAW,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,IAAI,EACjC,QAAQ,CAAC,EAAE,QAAQ,CAAC,IAAI,CAAC,GACxB,kBAAkB,CAAC,CAAC,CAAC,CAEvB"}
|