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":"to-negative-infinity.d.ts","sourceRoot":"","sources":["../../src/factories/to-negative-infinity.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,KAAK,SAAI,EAAE,IAAI,SAAI,GAAG,WAAW,CAAC,MAAM,CAAC,CAM3E"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { IEnumerable } from '../types.js';
|
|
2
|
+
/**
|
|
3
|
+
* Creates an infinite sequence by repeatedly transforming the previous value.
|
|
4
|
+
*
|
|
5
|
+
* @param seed The first value.
|
|
6
|
+
* @param func Produces the next value from the current value.
|
|
7
|
+
* @returns An infinite deferred sequence beginning with `seed`.
|
|
8
|
+
*/
|
|
9
|
+
export declare function unfold<T>(seed: T, func: (value: T) => T): IEnumerable<T>;
|
|
10
|
+
//# sourceMappingURL=unfold.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"unfold.d.ts","sourceRoot":"","sources":["../../src/factories/unfold.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C;;;;;;GAMG;AACH,wBAAgB,MAAM,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CASxE"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,89 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { choice } from './factories/choice.js';
|
|
2
|
+
import { cycle } from './factories/cycle.js';
|
|
3
|
+
import { defer } from './factories/defer.js';
|
|
4
|
+
import { empty } from './factories/empty.js';
|
|
5
|
+
import { from } from './factories/from.js';
|
|
6
|
+
import { generate } from './factories/generate.js';
|
|
7
|
+
import { make } from './factories/make.js';
|
|
8
|
+
import { matches } from './factories/matches.js';
|
|
9
|
+
import { range } from './factories/range.js';
|
|
10
|
+
import { rangeDown } from './factories/range-down.js';
|
|
11
|
+
import { rangeTo } from './factories/range-to.js';
|
|
12
|
+
import { repeat } from './factories/repeat.js';
|
|
13
|
+
import { repeatWithFinalize } from './factories/repeat-with-finalize.js';
|
|
14
|
+
import { toInfinity } from './factories/to-infinity.js';
|
|
15
|
+
import { toNegativeInfinity } from './factories/to-negative-infinity.js';
|
|
16
|
+
import { unfold } from './factories/unfold.js';
|
|
17
|
+
import type { IDictionary as DictionaryInterface, IDisposableEnumerable as DisposableEnumerableInterface, IEnumerable as EnumerableInterface, IEnumerator as EnumeratorInterface, IGrouping as GroupingInterface, ILookup as LookupInterface, IOrderedEnumerable as OrderedEnumerableInterface, IPageInfo as PageInfo, Indexed as IndexedValue, KeyValuePair as Pair, Neighbors as NeighborValues, Positioned as PositionedValue } from './types.js';
|
|
18
|
+
/** Entry point for creating and working with LINQ-style sequences. */
|
|
19
|
+
export declare class Enumerable {
|
|
20
|
+
/** Low-level helpers for creating enumerables and extending iterable prototypes. */
|
|
21
|
+
static readonly Utils: import("./utils.js").EnumerableUtils;
|
|
22
|
+
/** Creates an infinite sequence that randomly chooses from the supplied values. */
|
|
23
|
+
static readonly choice: typeof choice;
|
|
24
|
+
/** Creates an infinite sequence that repeatedly emits the supplied values in order. */
|
|
25
|
+
static readonly cycle: typeof cycle;
|
|
26
|
+
/** Defers sequence creation until each enumeration begins. */
|
|
27
|
+
static readonly defer: typeof defer;
|
|
28
|
+
/** Creates an empty sequence. */
|
|
29
|
+
static readonly empty: typeof empty;
|
|
30
|
+
/** Converts an enumerable source, iterator, array-like value, object, or scalar to a sequence. */
|
|
31
|
+
static readonly from: typeof from;
|
|
32
|
+
/** Generates values by repeatedly invoking a function. */
|
|
33
|
+
static readonly generate: typeof generate;
|
|
34
|
+
/** Creates a sequence containing one element. */
|
|
35
|
+
static readonly make: typeof make;
|
|
36
|
+
/** Enumerates all regular-expression matches in a string. */
|
|
37
|
+
static readonly matches: typeof matches;
|
|
38
|
+
/** Creates a counted numeric sequence. */
|
|
39
|
+
static readonly range: typeof range;
|
|
40
|
+
/** Creates a counted descending numeric sequence. */
|
|
41
|
+
static readonly rangeDown: typeof rangeDown;
|
|
42
|
+
/** Creates an inclusive numeric sequence between two endpoints. */
|
|
43
|
+
static readonly rangeTo: typeof rangeTo;
|
|
44
|
+
/** Repeats an element a specified number of times or indefinitely. */
|
|
45
|
+
static readonly repeat: typeof repeat;
|
|
46
|
+
/** Repeats an initialized resource until enumeration stops, then finalizes it. */
|
|
47
|
+
static readonly repeatWithFinalize: typeof repeatWithFinalize;
|
|
48
|
+
/** Creates an infinite ascending numeric sequence. */
|
|
49
|
+
static readonly toInfinity: typeof toInfinity;
|
|
50
|
+
/** Creates an infinite descending numeric sequence. */
|
|
51
|
+
static readonly toNegativeInfinity: typeof toNegativeInfinity;
|
|
52
|
+
/** Creates an infinite sequence by repeatedly transforming the previous value. */
|
|
53
|
+
static readonly unfold: typeof unfold;
|
|
54
|
+
}
|
|
55
|
+
/** Type contracts exposed through the `Enumerable` namespace. */
|
|
56
|
+
export declare namespace Enumerable {
|
|
57
|
+
/** A composable iterable sequence with LINQ-style query operators. */
|
|
58
|
+
type IEnumerable<T> = EnumerableInterface<T>;
|
|
59
|
+
/** An imperative cursor over a sequence. */
|
|
60
|
+
type IEnumerator<T> = EnumeratorInterface<T>;
|
|
61
|
+
/** A sequence with one or more stable ordering criteria. */
|
|
62
|
+
type IOrderedEnumerable<T> = OrderedEnumerableInterface<T>;
|
|
63
|
+
/** A sequence whose backing iterator can be explicitly released. */
|
|
64
|
+
type IDisposableEnumerable<T> = DisposableEnumerableInterface<T>;
|
|
65
|
+
/** A mutable key-value collection with optional normalized-key comparison. */
|
|
66
|
+
type IDictionary<TKey, TValue> = DictionaryInterface<TKey, TValue>;
|
|
67
|
+
/** A read-only one-to-many mapping. */
|
|
68
|
+
type ILookup<TKey, TElement> = LookupInterface<TKey, TElement>;
|
|
69
|
+
/** A sequence of elements associated with a key. */
|
|
70
|
+
type IGrouping<TKey, TElement> = GroupingInterface<TKey, TElement>;
|
|
71
|
+
/** A one-based page number and page size. */
|
|
72
|
+
type IPageInfo = PageInfo;
|
|
73
|
+
/** A key associated with one value. */
|
|
74
|
+
type KeyValuePair<TKey, TValue> = Pair<TKey, TValue>;
|
|
75
|
+
/** A sequence element paired with its zero-based index. */
|
|
76
|
+
type Indexed<T> = IndexedValue<T>;
|
|
77
|
+
/** A sequence element annotated with index and boundary information. */
|
|
78
|
+
type Positioned<T> = PositionedValue<T>;
|
|
79
|
+
/** A sequence element paired with its immediate neighbors. */
|
|
80
|
+
type Neighbors<T> = NeighborValues<T>;
|
|
81
|
+
/** @deprecated Use {@link Indexed} instead. */
|
|
82
|
+
type IndexedItem<T> = Indexed<T>;
|
|
83
|
+
/** @deprecated Use {@link Positioned} instead. */
|
|
84
|
+
type PositionedItem<T> = Positioned<T>;
|
|
85
|
+
/** @deprecated Use {@link Neighbors} instead. */
|
|
86
|
+
type ItemWithNeighbors<T> = Neighbors<T>;
|
|
87
|
+
}
|
|
3
88
|
export default Enumerable;
|
|
4
|
-
|
|
89
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAC/C,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAC7C,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAC7C,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAC7C,OAAO,EAAE,IAAI,EAAE,MAAM,qBAAqB,CAAC;AAC3C,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AACnD,OAAO,EAAE,IAAI,EAAE,MAAM,qBAAqB,CAAC;AAC3C,OAAO,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAC;AACjD,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAC;AACtD,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAClD,OAAO,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAC/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AACzE,OAAO,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AACxD,OAAO,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AACzE,OAAO,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAG/C,OAAO,KAAK,EACV,WAAW,IAAI,mBAAmB,EAClC,qBAAqB,IAAI,6BAA6B,EACtD,WAAW,IAAI,mBAAmB,EAClC,WAAW,IAAI,mBAAmB,EAClC,SAAS,IAAI,iBAAiB,EAC9B,OAAO,IAAI,eAAe,EAC1B,kBAAkB,IAAI,0BAA0B,EAChD,SAAS,IAAI,QAAQ,EACrB,OAAO,IAAI,YAAY,EACvB,YAAY,IAAI,IAAI,EACpB,SAAS,IAAI,cAAc,EAC3B,UAAU,IAAI,eAAe,EAC9B,MAAM,YAAY,CAAC;AAKpB,sEAAsE;AACtE,qBAAa,UAAU;IACrB,oFAAoF;IACpF,MAAM,CAAC,QAAQ,CAAC,KAAK,uCAAS;IAE9B,mFAAmF;IACnF,MAAM,CAAC,QAAQ,CAAC,MAAM,gBAAU;IAEhC,uFAAuF;IACvF,MAAM,CAAC,QAAQ,CAAC,KAAK,eAAS;IAE9B,8DAA8D;IAC9D,MAAM,CAAC,QAAQ,CAAC,KAAK,eAAS;IAE9B,iCAAiC;IACjC,MAAM,CAAC,QAAQ,CAAC,KAAK,eAAS;IAE9B,kGAAkG;IAClG,MAAM,CAAC,QAAQ,CAAC,IAAI,cAAQ;IAE5B,0DAA0D;IAC1D,MAAM,CAAC,QAAQ,CAAC,QAAQ,kBAAY;IAEpC,iDAAiD;IACjD,MAAM,CAAC,QAAQ,CAAC,IAAI,cAAQ;IAE5B,6DAA6D;IAC7D,MAAM,CAAC,QAAQ,CAAC,OAAO,iBAAW;IAElC,0CAA0C;IAC1C,MAAM,CAAC,QAAQ,CAAC,KAAK,eAAS;IAE9B,qDAAqD;IACrD,MAAM,CAAC,QAAQ,CAAC,SAAS,mBAAa;IAEtC,mEAAmE;IACnE,MAAM,CAAC,QAAQ,CAAC,OAAO,iBAAW;IAElC,sEAAsE;IACtE,MAAM,CAAC,QAAQ,CAAC,MAAM,gBAAU;IAEhC,kFAAkF;IAClF,MAAM,CAAC,QAAQ,CAAC,kBAAkB,4BAAsB;IAExD,sDAAsD;IACtD,MAAM,CAAC,QAAQ,CAAC,UAAU,oBAAc;IAExC,uDAAuD;IACvD,MAAM,CAAC,QAAQ,CAAC,kBAAkB,4BAAsB;IAExD,kFAAkF;IAClF,MAAM,CAAC,QAAQ,CAAC,MAAM,gBAAU;CACjC;AAID,iEAAiE;AACjE,yBAAiB,UAAU,CAAC;IAC1B,sEAAsE;IACtE,KAAY,WAAW,CAAC,CAAC,IAAI,mBAAmB,CAAC,CAAC,CAAC,CAAC;IAEpD,4CAA4C;IAC5C,KAAY,WAAW,CAAC,CAAC,IAAI,mBAAmB,CAAC,CAAC,CAAC,CAAC;IAEpD,4DAA4D;IAC5D,KAAY,kBAAkB,CAAC,CAAC,IAAI,0BAA0B,CAAC,CAAC,CAAC,CAAC;IAElE,oEAAoE;IACpE,KAAY,qBAAqB,CAAC,CAAC,IAAI,6BAA6B,CAAC,CAAC,CAAC,CAAC;IAExE,8EAA8E;IAC9E,KAAY,WAAW,CAAC,IAAI,EAAE,MAAM,IAAI,mBAAmB,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;IAE1E,uCAAuC;IACvC,KAAY,OAAO,CAAC,IAAI,EAAE,QAAQ,IAAI,eAAe,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;IAEtE,oDAAoD;IACpD,KAAY,SAAS,CAAC,IAAI,EAAE,QAAQ,IAAI,iBAAiB,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;IAE1E,6CAA6C;IAC7C,KAAY,SAAS,GAAG,QAAQ,CAAC;IAEjC,uCAAuC;IACvC,KAAY,YAAY,CAAC,IAAI,EAAE,MAAM,IAAI,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;IAE5D,2DAA2D;IAC3D,KAAY,OAAO,CAAC,CAAC,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;IAEzC,wEAAwE;IACxE,KAAY,UAAU,CAAC,CAAC,IAAI,eAAe,CAAC,CAAC,CAAC,CAAC;IAE/C,8DAA8D;IAC9D,KAAY,SAAS,CAAC,CAAC,IAAI,cAAc,CAAC,CAAC,CAAC,CAAC;IAE7C,+CAA+C;IAC/C,KAAY,WAAW,CAAC,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC;IAExC,kDAAkD;IAClD,KAAY,cAAc,CAAC,CAAC,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC;IAE9C,iDAAiD;IACjD,KAAY,iBAAiB,CAAC,CAAC,IAAI,SAAS,CAAC,CAAC,CAAC,CAAC;CACjD;eAEc,UAAU"}
|
package/dist/index.js
CHANGED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { IEnumerable } from '../types.js';
|
|
2
|
+
export declare function createEnumerable<T>(iteratorFactory: () => Iterator<T>): IEnumerable<T>;
|
|
3
|
+
export declare function fromGenerator<T>(generatorFactory: () => Generator<T>): IEnumerable<T>;
|
|
4
|
+
//# sourceMappingURL=create-enumerable.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-enumerable.d.ts","sourceRoot":"","sources":["../../src/internal/create-enumerable.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,gBAAgB,CAAC,CAAC,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAEtF;AAED,wBAAgB,aAAa,CAAC,CAAC,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAErF"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Comparer } from '../types.js';
|
|
2
|
+
export declare const identity: <T>(value: T) => T;
|
|
3
|
+
export declare function defaultComparer<T>(first: T, second: T): number;
|
|
4
|
+
export declare function reverseComparer<T>(comparer: Comparer<T>): Comparer<T>;
|
|
5
|
+
export declare function isIterable(value: unknown): value is Iterable<unknown>;
|
|
6
|
+
export declare function isArrayLike(value: unknown): value is ArrayLike<unknown>;
|
|
7
|
+
//# sourceMappingURL=functions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"functions.d.ts","sourceRoot":"","sources":["../../src/internal/functions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAE5C,eAAO,MAAM,QAAQ,GAAI,CAAC,SAAS,CAAC,KAAG,CAAU,CAAC;AAElD,wBAAgB,eAAe,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,GAAG,MAAM,CAc9D;AAED,wBAAgB,eAAe,CAAC,CAAC,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAErE;AAED,wBAAgB,UAAU,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,QAAQ,CAAC,OAAO,CAAC,CAGrE;AAED,wBAAgB,WAAW,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,SAAS,CAAC,OAAO,CAAC,CAEvE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"to-iterable.d.ts","sourceRoot":"","sources":["../../src/internal/to-iterable.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAGnD,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,EAAE,eAAe,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAcrE"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { IEnumerable, KeyValuePair } from '../types.js';
|
|
2
|
+
export declare function aggregateBy<T, TKey, TAccumulate>(this: IEnumerable<T>, keySelector: (element: T) => TKey, seed: TAccumulate, accumulator: (accumulate: TAccumulate, element: T) => TAccumulate, compareSelector?: (key: TKey) => unknown): IEnumerable<KeyValuePair<TKey, TAccumulate>>;
|
|
3
|
+
//# sourceMappingURL=aggregate-by.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"aggregate-by.d.ts","sourceRoot":"","sources":["../../src/operators/aggregate-by.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAI7D,wBAAgB,WAAW,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,EAC9C,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,WAAW,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,IAAI,EACjC,IAAI,EAAE,WAAW,EACjB,WAAW,EAAE,CAAC,UAAU,EAAE,WAAW,EAAE,OAAO,EAAE,CAAC,KAAK,WAAW,EACjE,eAAe,GAAE,CAAC,GAAG,EAAE,IAAI,KAAK,OAAkB,GACjD,WAAW,CAAC,YAAY,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC,CAqB9C"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { IEnumerable } from '../types.js';
|
|
2
|
+
export declare function aggregate<T, TAccumulate, TResult>(this: IEnumerable<T>, seedOrFunc: TAccumulate | ((prev: T, current: T) => T), func?: (prev: TAccumulate, current: T) => TAccumulate, resultSelector?: (last: TAccumulate) => TResult): T | TAccumulate | TResult;
|
|
3
|
+
//# sourceMappingURL=aggregate.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"aggregate.d.ts","sourceRoot":"","sources":["../../src/operators/aggregate.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,SAAS,CAAC,CAAC,EAAE,WAAW,EAAE,OAAO,EAC/C,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,UAAU,EAAE,WAAW,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,OAAO,EAAE,CAAC,KAAK,CAAC,CAAC,EACtD,IAAI,CAAC,EAAE,CAAC,IAAI,EAAE,WAAW,EAAE,OAAO,EAAE,CAAC,KAAK,WAAW,EACrD,cAAc,CAAC,EAAE,CAAC,IAAI,EAAE,WAAW,KAAK,OAAO,GAC9C,CAAC,GAAG,WAAW,GAAG,OAAO,CAuB3B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"all.d.ts","sourceRoot":"","sources":["../../src/operators/all.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,SAAS,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,OAAO,GAAG,OAAO,CAQxF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"alternate.d.ts","sourceRoot":"","sources":["../../src/operators/alternate.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAKhE,wBAAgB,SAAS,CAAC,CAAC,EACzB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,cAAc,EAAE,CAAC,GAAG,eAAe,CAAC,CAAC,CAAC,GACrC,WAAW,CAAC,CAAC,CAAC,CAgBhB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"any.d.ts","sourceRoot":"","sources":["../../src/operators/any.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,SAAS,CAAC,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,OAAO,GAAG,OAAO,CAQzF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"append.d.ts","sourceRoot":"","sources":["../../src/operators/append.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,MAAM,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAM1E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"as-enumerable.d.ts","sourceRoot":"","sources":["../../src/operators/as-enumerable.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,GAAG,WAAW,CAAC,CAAC,CAAC,CAKpE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"average.d.ts","sourceRoot":"","sources":["../../src/operators/average.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,OAAO,CAAC,CAAC,EACvB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,QAAQ,GAAE,CAAC,OAAO,EAAE,CAAC,KAAK,MAAe,GACxC,MAAM,CAUR"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"buffer.d.ts","sourceRoot":"","sources":["../../src/operators/buffer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,MAAM,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,MAAM,GAAG,WAAW,CAAC,CAAC,EAAE,CAAC,CAsB/E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cast.d.ts","sourceRoot":"","sources":["../../src/operators/cast.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,IAAI,CAAC,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,OAAO,CAAC,CAE3E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catch-error.d.ts","sourceRoot":"","sources":["../../src/operators/catch-error.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,UAAU,CAAC,CAAC,EAC1B,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,OAAO,EAAE,CAAC,SAAS,EAAE,OAAO,KAAK,IAAI,GACpC,WAAW,CAAC,CAAC,CAAC,CAShB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"choose.d.ts","sourceRoot":"","sources":["../../src/operators/choose.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,MAAM,CAAC,CAAC,EACtB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,QAAQ,EAAE,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,CAAC,GACzC,WAAW,CAAC,CAAC,CAAC,CAWhB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chunk.d.ts","sourceRoot":"","sources":["../../src/operators/chunk.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,KAAK,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,GAAG,WAAW,CAAC,CAAC,EAAE,CAAC,CAM7E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"concat.d.ts","sourceRoot":"","sources":["../../src/operators/concat.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAIhE,wBAAgB,MAAM,CAAC,CAAC,EACtB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,GAAG,SAAS,EAAE,eAAe,CAAC,CAAC,CAAC,EAAE,GACjC,WAAW,CAAC,CAAC,CAAC,CAQhB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contains.d.ts","sourceRoot":"","sources":["../../src/operators/contains.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,QAAQ,CAAC,CAAC,EAAE,QAAQ,EAClC,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,EAAE,CAAC,EACR,eAAe,GAAE,CAAC,OAAO,EAAE,CAAC,KAAK,QAA+C,GAC/E,OAAO,CAUT"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { IEnumerable, KeyValuePair } from '../types.js';
|
|
2
|
+
export declare function countBy<T, TKey>(this: IEnumerable<T>, keySelector: (element: T) => TKey, compareSelector?: (key: TKey) => unknown): IEnumerable<KeyValuePair<TKey, number>>;
|
|
3
|
+
//# sourceMappingURL=count-by.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"count-by.d.ts","sourceRoot":"","sources":["../../src/operators/count-by.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAI7D,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,EAC7B,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,WAAW,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,IAAI,EACjC,eAAe,GAAE,CAAC,GAAG,EAAE,IAAI,KAAK,OAAkB,GACjD,WAAW,CAAC,YAAY,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC,CAkBzC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"count.d.ts","sourceRoot":"","sources":["../../src/operators/count.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,KAAK,CAAC,CAAC,EACrB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,SAAS,CAAC,EAAE,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,OAAO,GACjD,MAAM,CAWR"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { Comparer, IOrderedEnumerable } from '../types.js';
|
|
2
|
+
export declare function createOrderedEnumerable<T, TKey>(this: IOrderedEnumerable<T>, keySelector: (element: T) => TKey, comparer?: Comparer<TKey>, descending?: boolean): IOrderedEnumerable<T>;
|
|
3
|
+
//# sourceMappingURL=create-ordered-enumerable.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-ordered-enumerable.d.ts","sourceRoot":"","sources":["../../src/operators/create-ordered-enumerable.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAIhE,wBAAgB,uBAAuB,CAAC,CAAC,EAAE,IAAI,EAC7C,IAAI,EAAE,kBAAkB,CAAC,CAAC,CAAC,EAC3B,WAAW,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,IAAI,EACjC,QAAQ,GAAE,QAAQ,CAAC,IAAI,CAAmB,EAC1C,UAAU,UAAQ,GACjB,kBAAkB,CAAC,CAAC,CAAC,CASvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"default-if-empty.d.ts","sourceRoot":"","sources":["../../src/operators/default-if-empty.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,YAAY,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAaxF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"distinct-by.d.ts","sourceRoot":"","sources":["../../src/operators/distinct-by.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAI/C,wBAAgB,UAAU,CAAC,CAAC,EAAE,IAAI,EAAE,QAAQ,GAAG,IAAI,EACjD,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,WAAW,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,IAAI,EACjC,eAAe,GAAE,CAAC,GAAG,EAAE,IAAI,KAAK,QAA8C,GAC7E,WAAW,CAAC,CAAC,CAAC,CAKhB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"distinct-until-changed.d.ts","sourceRoot":"","sources":["../../src/operators/distinct-until-changed.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAI/C,wBAAgB,oBAAoB,CAAC,CAAC,EAAE,QAAQ,EAC9C,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,eAAe,GAAE,CAAC,OAAO,EAAE,CAAC,KAAK,QAA+C,GAC/E,WAAW,CAAC,CAAC,CAAC,CAchB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"distinct.d.ts","sourceRoot":"","sources":["../../src/operators/distinct.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAI/C,wBAAgB,QAAQ,CAAC,CAAC,EAAE,QAAQ,EAClC,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,eAAe,GAAE,CAAC,OAAO,EAAE,CAAC,KAAK,QAA+C,GAC/E,WAAW,CAAC,CAAC,CAAC,CAYhB"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { IEnumerable } from '../types.js';
|
|
2
|
+
export declare function doAction<T>(this: IEnumerable<T>, action: (element: T, index: number) => void): IEnumerable<T>;
|
|
3
|
+
export declare function doAction<T>(this: IEnumerable<T>, action: (element: T, index: number) => boolean): IEnumerable<T>;
|
|
4
|
+
//# sourceMappingURL=do-action.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"do-action.d.ts","sourceRoot":"","sources":["../../src/operators/do-action.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,QAAQ,CAAC,CAAC,EACxB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,MAAM,EAAE,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,GAC1C,WAAW,CAAC,CAAC,CAAC,CAAC;AAClB,wBAAgB,QAAQ,CAAC,CAAC,EACxB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,MAAM,EAAE,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,OAAO,GAC7C,WAAW,CAAC,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"element-at-or-default.d.ts","sourceRoot":"","sources":["../../src/operators/element-at-or-default.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,kBAAkB,CAAC,CAAC,EAClC,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,EAAE,MAAM,EACb,YAAY,CAAC,EAAE,CAAC,GACf,CAAC,GAAG,SAAS,CAaf"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"element-at.d.ts","sourceRoot":"","sources":["../../src/operators/element-at.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,SAAS,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,MAAM,GAAG,CAAC,CAUnE"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { EnumerableInput, IEnumerable } from '../types.js';
|
|
2
|
+
export declare function exceptBy<T, TKey, TCompare = TKey>(this: IEnumerable<T>, second: EnumerableInput<TKey>, keySelector: (element: T) => TKey, compareSelector?: (key: TKey) => TCompare): IEnumerable<T>;
|
|
3
|
+
//# sourceMappingURL=except-by.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"except-by.d.ts","sourceRoot":"","sources":["../../src/operators/except-by.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAKhE,wBAAgB,QAAQ,CAAC,CAAC,EAAE,IAAI,EAAE,QAAQ,GAAG,IAAI,EAC/C,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,MAAM,EAAE,eAAe,CAAC,IAAI,CAAC,EAC7B,WAAW,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,IAAI,EACjC,eAAe,GAAE,CAAC,GAAG,EAAE,IAAI,KAAK,QAA8C,GAC7E,WAAW,CAAC,CAAC,CAAC,CAiBhB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"except.d.ts","sourceRoot":"","sources":["../../src/operators/except.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAKhE,wBAAgB,MAAM,CAAC,CAAC,EAAE,QAAQ,EAChC,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,WAAW,CAAC,CAAC,CAAC,CAahB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"finally-action.d.ts","sourceRoot":"","sources":["../../src/operators/finally-action.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,aAAa,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,MAAM,EAAE,MAAM,IAAI,GAAG,WAAW,CAAC,CAAC,CAAC,CASzF"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { IEnumerable } from '../types.js';
|
|
2
|
+
export declare function firstOrDefault<T, TDefault>(this: IEnumerable<T>, predicateOrDefault?: ((element: T, index: number) => boolean) | TDefault, defaultValue?: TDefault): T | TDefault | undefined;
|
|
3
|
+
//# sourceMappingURL=first-or-default.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"first-or-default.d.ts","sourceRoot":"","sources":["../../src/operators/first-or-default.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,cAAc,CAAC,CAAC,EAAE,QAAQ,EACxC,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,CAc1B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"first.d.ts","sourceRoot":"","sources":["../../src/operators/first.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,KAAK,CAAC,CAAC,EACrB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,SAAS,CAAC,EAAE,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,OAAO,GACjD,CAAC,CAUH"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flatten.d.ts","sourceRoot":"","sources":["../../src/operators/flatten.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAI/C,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,OAAO,CAAC,CAgBrE"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { IEnumerable } from '../types.js';
|
|
2
|
+
export declare function forEach<T>(this: IEnumerable<T>, action: (element: T, index: number) => void): void;
|
|
3
|
+
export declare function forEach<T>(this: IEnumerable<T>, action: (element: T, index: number) => boolean): void;
|
|
4
|
+
//# sourceMappingURL=for-each.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"for-each.d.ts","sourceRoot":"","sources":["../../src/operators/for-each.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,OAAO,CAAC,CAAC,EACvB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,MAAM,EAAE,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,GAC1C,IAAI,CAAC;AACR,wBAAgB,OAAO,CAAC,CAAC,EACvB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,MAAM,EAAE,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,OAAO,GAC7C,IAAI,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"force.d.ts","sourceRoot":"","sources":["../../src/operators/force.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,KAAK,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,IAAI,CAInD"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { IEnumerable, IGrouping } from '../types.js';
|
|
2
|
+
export declare function groupBy<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=group-by.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"group-by.d.ts","sourceRoot":"","sources":["../../src/operators/group-by.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAG1D,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,EAAE,QAAQ,GAAG,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC,IAAI,EAAE,QAAQ,CAAC,EAChF,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,CAKtB"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { EnumerableInput, IEnumerable } from '../types.js';
|
|
2
|
+
export declare function groupJoin<TOuter, TInner, TKey, TResult>(this: IEnumerable<TOuter>, inner: EnumerableInput<TInner>, outerKeySelector: (outer: TOuter) => TKey, innerKeySelector: (inner: TInner) => TKey, resultSelector: (outer: TOuter, inner: IEnumerable<TInner>) => TResult, compareSelector?: (key: TKey) => unknown): IEnumerable<TResult>;
|
|
3
|
+
//# sourceMappingURL=group-join.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"group-join.d.ts","sourceRoot":"","sources":["../../src/operators/group-join.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAMhE,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,EAAE,KAAK,EAAE,WAAW,CAAC,MAAM,CAAC,KAAK,OAAO,EACtE,eAAe,GAAE,CAAC,GAAG,EAAE,IAAI,KAAK,OAAkB,GACjD,WAAW,CAAC,OAAO,CAAC,CAqBtB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-of.d.ts","sourceRoot":"","sources":["../../src/operators/index-of.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,OAAO,CAAC,CAAC,EACvB,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,CAcR"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/operators/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAExD,wBAAgB,KAAK,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAEtE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"insert.d.ts","sourceRoot":"","sources":["../../src/operators/insert.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAIhE,wBAAgB,MAAM,CAAC,CAAC,EACtB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,eAAe,CAAC,CAAC,CAAC,GACzB,WAAW,CAAC,CAAC,CAAC,CAiBhB"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { EnumerableInput, IEnumerable } from '../types.js';
|
|
2
|
+
export declare function intersectBy<T, TKey, TCompare = TKey>(this: IEnumerable<T>, second: EnumerableInput<TKey>, keySelector: (element: T) => TKey, compareSelector?: (key: TKey) => TCompare): IEnumerable<T>;
|
|
3
|
+
//# sourceMappingURL=intersect-by.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"intersect-by.d.ts","sourceRoot":"","sources":["../../src/operators/intersect-by.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAKhE,wBAAgB,WAAW,CAAC,CAAC,EAAE,IAAI,EAAE,QAAQ,GAAG,IAAI,EAClD,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,MAAM,EAAE,eAAe,CAAC,IAAI,CAAC,EAC7B,WAAW,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,IAAI,EACjC,eAAe,GAAE,CAAC,GAAG,EAAE,IAAI,KAAK,QAA8C,GAC7E,WAAW,CAAC,CAAC,CAAC,CAehB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"intersect.d.ts","sourceRoot":"","sources":["../../src/operators/intersect.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAKhE,wBAAgB,SAAS,CAAC,CAAC,EAAE,QAAQ,EACnC,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,WAAW,CAAC,CAAC,CAAC,CAahB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"is-empty.d.ts","sourceRoot":"","sources":["../../src/operators/is-empty.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,OAAO,CASxD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"join-with.d.ts","sourceRoot":"","sources":["../../src/operators/join-with.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAG/C,wBAAgB,QAAQ,CAAC,CAAC,EACxB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,SAAS,EAAE,MAAM,GAAG,CAAC,CAAC,OAAO,EAAE,CAAC,KAAK,CAAC,CAAC,GACtC,MAAM,GAAG,WAAW,CAAC,CAAC,CAAC,CAoBzB"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { EnumerableInput, IEnumerable } from '../types.js';
|
|
2
|
+
export declare function join<TOuter, TInner, TKey, TResult>(this: IEnumerable<TOuter>, inner: EnumerableInput<TInner>, outerKeySelector: (outer: TOuter) => TKey, innerKeySelector: (inner: TInner) => TKey, resultSelector: (outer: TOuter, inner: TInner) => TResult, compareSelector?: (key: TKey) => unknown): IEnumerable<TResult>;
|
|
3
|
+
//# sourceMappingURL=join.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"join.d.ts","sourceRoot":"","sources":["../../src/operators/join.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAKhE,wBAAgB,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAChD,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,KAAK,OAAO,EACzD,eAAe,GAAE,CAAC,GAAG,EAAE,IAAI,KAAK,OAAkB,GACjD,WAAW,CAAC,OAAO,CAAC,CAwBtB"}
|