├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── ATTRIBUTION.md ├── EXAMPLES.md ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── config ├── copy.js ├── editdocs.js ├── fix-imports.js ├── package.json └── tsconfig.json ├── examples ├── digitsofpi.ts ├── index.ts ├── misc.ts ├── package.json ├── paralleldownload.ts ├── primenumbers.ts └── tsconfig.json ├── package.json ├── src ├── async │ ├── BasicAsyncEnumerable.ts │ ├── OrderedAsyncEnumerable.ts │ ├── _ordered │ │ ├── asAsyncKeyMap.ts │ │ ├── asAsyncKeyMapSync.ts │ │ ├── asAsyncSortedKeyValues.ts │ │ ├── asAsyncSortedKeyValuesSync.ts │ │ ├── asKeyMap.ts │ │ ├── asKeyMapSync.ts │ │ ├── asSortedKeyValues.ts │ │ └── asSortedKeyValuesSync.ts │ ├── _private │ │ ├── aggregate.ts │ │ ├── all.ts │ │ ├── allAsync.ts │ │ ├── any.ts │ │ ├── anyAsync.ts │ │ ├── append.ts │ │ ├── asParallel.ts │ │ ├── average.ts │ │ ├── averageAsync.ts │ │ ├── chunk.ts │ │ ├── concatenate.ts │ │ ├── contains.ts │ │ ├── containsAsync.ts │ │ ├── count.ts │ │ ├── countAsync.ts │ │ ├── defaultIfEmpty.ts │ │ ├── distinct.ts │ │ ├── distinctAsync.ts │ │ ├── each.ts │ │ ├── eachAsync.ts │ │ ├── elementAt.ts │ │ ├── elementAtOrDefault.ts │ │ ├── except.ts │ │ ├── exceptAsync.ts │ │ ├── first.ts │ │ ├── firstAsync.ts │ │ ├── firstOrDefault.ts │ │ ├── firstOrDefaultAsync.ts │ │ ├── groupBy.ts │ │ ├── groupByAsync.ts │ │ ├── groupByWithSel.ts │ │ ├── groupJoin.ts │ │ ├── groupJoinAsync.ts │ │ ├── intersect.ts │ │ ├── intersectAsync.ts │ │ ├── join.ts │ │ ├── last.ts │ │ ├── lastAsync.ts │ │ ├── lastOrDefault.ts │ │ ├── lastOrDefaultAsync.ts │ │ ├── max.ts │ │ ├── maxAsync.ts │ │ ├── min.ts │ │ ├── minAsync.ts │ │ ├── ofType.ts │ │ ├── order.ts │ │ ├── orderBy.ts │ │ ├── orderByAsync.ts │ │ ├── orderByDescending.ts │ │ ├── orderByDescendingAsync.ts │ │ ├── orderDescending.ts │ │ ├── partition.ts │ │ ├── partitionAsync.ts │ │ ├── prepend.ts │ │ ├── reverse.ts │ │ ├── select.ts │ │ ├── selectAsync.ts │ │ ├── selectMany.ts │ │ ├── selectManyAsync.ts │ │ ├── sequenceEquals.ts │ │ ├── sequenceEqualsAsync.ts │ │ ├── single.ts │ │ ├── singleAsync.ts │ │ ├── singleOrDefault.ts │ │ ├── singleOrDefaultAsync.ts │ │ ├── skip.ts │ │ ├── skipWhile.ts │ │ ├── skipWhileAsync.ts │ │ ├── sum.ts │ │ ├── sumAsync.ts │ │ ├── take.ts │ │ ├── takeWhile.ts │ │ ├── takeWhileAsync.ts │ │ ├── toArray.ts │ │ ├── toMap.ts │ │ ├── toMapAsync.ts │ │ ├── toObject.ts │ │ ├── toObjectAsync.ts │ │ ├── toSet.ts │ │ ├── union.ts │ │ ├── unionAsync.ts │ │ ├── where.ts │ │ ├── whereAsync.ts │ │ ├── zip.ts │ │ └── zipAsync.ts │ ├── isAsyncEnumerable.ts │ └── static │ │ ├── emptyAsync.ts │ │ ├── enumerateObjectAsync.ts │ │ ├── flattenAsync.ts │ │ ├── fromAsync.ts │ │ ├── index.ts │ │ ├── rangeAsync.ts │ │ └── repeatAsync.ts ├── index.ts ├── initializer │ ├── bindArray.ts │ ├── bindArrayEnumerable.ts │ ├── bindLinq.ts │ ├── bindLinqAsync.ts │ ├── bindLinqParallel.ts │ ├── bindString.ts │ ├── initializeLinq.ts │ └── initializer.ts ├── parallel │ ├── BasicParallelEnumerable.ts │ ├── OrderedParallelEnumerable.ts │ ├── _ordered │ │ ├── asAsyncKeyMap.ts │ │ ├── asAsyncKeyMapSync.ts │ │ ├── asAsyncSortedKeyValues.ts │ │ ├── asAsyncSortedKeyValuesSync.ts │ │ ├── asKeyMap.ts │ │ ├── asKeyMapSync.ts │ │ ├── asSortedKeyValues.ts │ │ └── asSortedKeyValuesSync.ts │ ├── _private │ │ ├── _nextIteration.ts │ │ ├── _nextIterationAsync.ts │ │ ├── _nextIterationWithIndex.ts │ │ ├── _nextIterationWithIndexAsync.ts │ │ ├── _typeDataToArray.ts │ │ ├── aggregate.ts │ │ ├── all.ts │ │ ├── allAsync.ts │ │ ├── any.ts │ │ ├── anyAsync.ts │ │ ├── append.ts │ │ ├── asAsync.ts │ │ ├── average.ts │ │ ├── averageAsync.ts │ │ ├── chunk.ts │ │ ├── concatenate.ts │ │ ├── contains.ts │ │ ├── containsAsync.ts │ │ ├── count.ts │ │ ├── countAsync.ts │ │ ├── defaultIfEmpty.ts │ │ ├── distinct.ts │ │ ├── distinctAsync.ts │ │ ├── each.ts │ │ ├── eachAsync.ts │ │ ├── elementAt.ts │ │ ├── elementAtOrDefault.ts │ │ ├── except.ts │ │ ├── exceptAsync.ts │ │ ├── first.ts │ │ ├── firstAsync.ts │ │ ├── firstOrDefault.ts │ │ ├── firstOrDefaultAsync.ts │ │ ├── groupBy.ts │ │ ├── groupByAsync.ts │ │ ├── groupByWithSel.ts │ │ ├── groupJoin.ts │ │ ├── groupJoinAsync.ts │ │ ├── intersect.ts │ │ ├── intersectAsync.ts │ │ ├── join.ts │ │ ├── last.ts │ │ ├── lastAsync.ts │ │ ├── lastOrDefault.ts │ │ ├── lastOrDefaultAsync.ts │ │ ├── max.ts │ │ ├── maxAsync.ts │ │ ├── min.ts │ │ ├── minAsync.ts │ │ ├── ofType.ts │ │ ├── order.ts │ │ ├── orderBy.ts │ │ ├── orderByAsync.ts │ │ ├── orderByDescending.ts │ │ ├── orderByDescendingAsync.ts │ │ ├── orderDescending.ts │ │ ├── partition.ts │ │ ├── partitionAsync.ts │ │ ├── prepend.ts │ │ ├── reverse.ts │ │ ├── select.ts │ │ ├── selectAsync.ts │ │ ├── selectMany.ts │ │ ├── selectManyAsync.ts │ │ ├── sequenceEquals.ts │ │ ├── sequenceEqualsAsync.ts │ │ ├── single.ts │ │ ├── singleAsync.ts │ │ ├── singleOrDefault.ts │ │ ├── singleOrDefaultAsync.ts │ │ ├── skip.ts │ │ ├── skipWhile.ts │ │ ├── skipWhileAsync.ts │ │ ├── sum.ts │ │ ├── sumAsync.ts │ │ ├── take.ts │ │ ├── takeWhile.ts │ │ ├── takeWhileAsync.ts │ │ ├── toArray.ts │ │ ├── toMap.ts │ │ ├── toMapAsync.ts │ │ ├── toObject.ts │ │ ├── toObjectAsync.ts │ │ ├── toSet.ts │ │ ├── union.ts │ │ ├── unionAsync.ts │ │ ├── where.ts │ │ ├── whereAsync.ts │ │ ├── zip.ts │ │ └── zipAsync.ts │ ├── isParallelEnumerable.ts │ └── static │ │ ├── emptyParallel.ts │ │ ├── flattenParallel.ts │ │ ├── fromParallel.ts │ │ ├── index.ts │ │ ├── rangeParallel.ts │ │ └── repeatParallel.ts ├── shared │ ├── ArgumentOutOfRangeException.ts │ ├── EqualityComparer.ts │ ├── ErrorString.ts │ ├── InvalidOperationException.ts │ ├── NumberComparer.ts │ ├── StrictEqualityComparer.ts │ ├── StringifyComparer.ts │ └── index.ts ├── sync │ ├── ArrayEnumerable.ts │ ├── BasicEnumerable.ts │ ├── Grouping.ts │ ├── OrderedEnumerable.ts │ ├── _ordered │ │ ├── asKeyMap.ts │ │ ├── asKeyMapAsync.ts │ │ ├── asSortedKeyValues.ts │ │ └── asSortedKeyValuesAsync.ts │ ├── _private │ │ ├── aggregate.ts │ │ ├── all.ts │ │ ├── allAsync.ts │ │ ├── any.ts │ │ ├── anyAsync.ts │ │ ├── append.ts │ │ ├── asAsync.ts │ │ ├── asParallel.ts │ │ ├── average.ts │ │ ├── averageAsync.ts │ │ ├── chunk.ts │ │ ├── concatenate.ts │ │ ├── contains.ts │ │ ├── containsAsync.ts │ │ ├── count.ts │ │ ├── countAsync.ts │ │ ├── defaultIfEmpty.ts │ │ ├── distinct.ts │ │ ├── distinctAsync.ts │ │ ├── each.ts │ │ ├── eachAsync.ts │ │ ├── elementAt.ts │ │ ├── elementAtOrDefault.ts │ │ ├── except.ts │ │ ├── exceptAsync.ts │ │ ├── first.ts │ │ ├── firstAsync.ts │ │ ├── firstOrDefault.ts │ │ ├── firstOrDefaultAsync.ts │ │ ├── groupBy.ts │ │ ├── groupByAsync.ts │ │ ├── groupByShared.ts │ │ ├── groupByWithResult.ts │ │ ├── groupByWithResultAndSelector.ts │ │ ├── groupByWithSel.ts │ │ ├── groupJoin.ts │ │ ├── groupJoinAsync.ts │ │ ├── intersect.ts │ │ ├── intersectAsync.ts │ │ ├── join.ts │ │ ├── last.ts │ │ ├── lastAsync.ts │ │ ├── lastOrDefault.ts │ │ ├── lastOrDefaultAsync.ts │ │ ├── max.ts │ │ ├── maxAsync.ts │ │ ├── min.ts │ │ ├── minAsync.ts │ │ ├── ofType.ts │ │ ├── order.ts │ │ ├── orderBy.ts │ │ ├── orderByAsync.ts │ │ ├── orderByDescending.ts │ │ ├── orderByDescendingAsync.ts │ │ ├── orderDescending.ts │ │ ├── partition.ts │ │ ├── partitionAsync.ts │ │ ├── prepend.ts │ │ ├── reverse.ts │ │ ├── select.ts │ │ ├── selectAsync.ts │ │ ├── selectMany.ts │ │ ├── selectManyAsync.ts │ │ ├── sequenceEquals.ts │ │ ├── sequenceEqualsAsync.ts │ │ ├── single.ts │ │ ├── singleAsync.ts │ │ ├── singleOrDefault.ts │ │ ├── singleOrDefaultAsync.ts │ │ ├── skip.ts │ │ ├── skipWhile.ts │ │ ├── skipWhileAsync.ts │ │ ├── sum.ts │ │ ├── sumAsync.ts │ │ ├── take.ts │ │ ├── takeWhile.ts │ │ ├── takeWhileAsync.ts │ │ ├── toArray.ts │ │ ├── toMap.ts │ │ ├── toMapAsync.ts │ │ ├── toObject.ts │ │ ├── toObjectAsync.ts │ │ ├── toSet.ts │ │ ├── union.ts │ │ ├── unionAsync.ts │ │ ├── where.ts │ │ ├── whereAsync.ts │ │ ├── zip.ts │ │ └── zipAsync.ts │ ├── isEnumerable.ts │ └── static │ │ ├── empty.ts │ │ ├── enumerateObject.ts │ │ ├── flatten.ts │ │ ├── from.ts │ │ ├── index.ts │ │ ├── range.ts │ │ └── repeat.ts └── types │ ├── Flatten.ts │ ├── IAsyncEnumerable.ts │ ├── IAsyncEqualityComparer.ts │ ├── IAsyncParallel.ts │ ├── IComparer.ts │ ├── IConstructor.ts │ ├── IEnumerable.ts │ ├── IEqualityComparer.ts │ ├── IGrouping.ts │ ├── IOrderedAsyncEnumerable.ts │ ├── IOrderedEnumerable.ts │ ├── IOrderedParallelEnumerable.ts │ ├── IParallelEnumerable.ts │ ├── IPrototype.ts │ ├── InferType.ts │ ├── IterableType.ts │ ├── LimitedTypedData.ts │ ├── ParallelGeneratorType.ts │ ├── SelectorKeyType.ts │ ├── TypedData.ts │ └── index.ts ├── tests ├── .gitignore ├── esmtest │ ├── index.ts │ ├── package.json │ └── tsconfig.json ├── moduletest │ ├── index.ts │ ├── package.json │ └── tsconfig.json ├── nodetest │ ├── index.ts │ ├── package.json │ └── tsconfig.json ├── reacttest │ ├── .eslintrc.json │ ├── .gitignore │ ├── next-env.d.ts │ ├── package.json │ ├── pages │ │ ├── _app.tsx │ │ ├── api │ │ │ └── hello.ts │ │ └── index.tsx │ ├── public │ │ └── favicon.ico │ └── tsconfig.json └── unittests │ ├── TestHelpers.ts │ ├── initialize.ts │ ├── jest.config.js │ ├── package.json │ ├── tests │ ├── Aggregate.ts │ ├── All.ts │ ├── AllAsync.ts │ ├── Any.ts │ ├── AnyAsync.ts │ ├── Append.ts │ ├── AsAsync.ts │ ├── AsParallel.ts │ ├── AsyncEnumerableIteration.ts │ ├── Average.ts │ ├── AverageAsync.ts │ ├── Chunk.ts │ ├── Concatenate.ts │ ├── Contains.ts │ ├── ContainsAsync.ts │ ├── Count.ts │ ├── CountAsync.ts │ ├── DefaultIfEmpty.ts │ ├── Distinct.ts │ ├── DistinctAsync.ts │ ├── Each.ts │ ├── EachAsync.ts │ ├── ElementAt.ts │ ├── ElementAtOrDefault.ts │ ├── Except.ts │ ├── ExceptAsync.ts │ ├── First.ts │ ├── FirstAsync.ts │ ├── FirstOrDefault.ts │ ├── FirstOrDefaultAsync.ts │ ├── GroupBy.ts │ ├── GroupByAsync.ts │ ├── GroupByWithSel.ts │ ├── GroupJoin.ts │ ├── GroupJoinAsync.ts │ ├── Intersect.ts │ ├── IntersectAsync.ts │ ├── JoinByKey.ts │ ├── Last.ts │ ├── LastAsync.ts │ ├── LastOrDefault.ts │ ├── LastOrDefaultAsync.ts │ ├── Max.ts │ ├── MaxAsync.ts │ ├── Min.ts │ ├── MinAsync.ts │ ├── OfType.ts │ ├── Order.ts │ ├── OrderBy.ts │ ├── OrderByAsync.ts │ ├── OrderByDescending.ts │ ├── OrderByDescendingAsync.ts │ ├── OrderDescending.ts │ ├── ParallelEnumerable.ts │ ├── Partition.ts │ ├── PartitionAsync.ts │ ├── Prepend.ts │ ├── Reverse.ts │ ├── Select.ts │ ├── SelectAsync.ts │ ├── SelectMany.ts │ ├── SelectManyAsync.ts │ ├── SequenceEquals.ts │ ├── SequenceEqualsAsync.ts │ ├── Single.ts │ ├── SingleAsync.ts │ ├── SingleOrDefault.ts │ ├── SingleOrDefaultAsync.ts │ ├── Skip.ts │ ├── SkipWhile.ts │ ├── SkipWhileAsync.ts │ ├── Sum.ts │ ├── SumAsync.ts │ ├── Take.ts │ ├── TakeWhile.ts │ ├── TakeWhileAsync.ts │ ├── ThenBy.ts │ ├── ThenByAsync.ts │ ├── ToArray.ts │ ├── ToMap.ts │ ├── ToMapAsync.ts │ ├── ToSet.ts │ ├── Union.ts │ ├── Where.ts │ ├── WhereAsync.ts │ ├── Zip.ts │ ├── ZipAsync.ts │ ├── examples │ │ ├── MiscExamples.ts │ │ └── PrimeNumbers.ts │ ├── is │ │ ├── IsEnumerable.ts │ │ ├── isAsyncEnumerable.ts │ │ └── isParallelEnumerable.ts │ ├── other │ │ ├── Exceptions.ts │ │ ├── From.ts │ │ └── fromAsync.ts │ ├── staticmethods │ │ ├── Empty.ts │ │ ├── EnumerateObject.ts │ │ ├── Flatten.ts │ │ ├── Range.ts │ │ └── Repeat.ts │ ├── toObject.ts │ └── toObjectAsync.ts │ └── tsconfig.json └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/.gitignore -------------------------------------------------------------------------------- /ATTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/ATTRIBUTION.md -------------------------------------------------------------------------------- /EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/EXAMPLES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /config/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/config/copy.js -------------------------------------------------------------------------------- /config/editdocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/config/editdocs.js -------------------------------------------------------------------------------- /config/fix-imports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/config/fix-imports.js -------------------------------------------------------------------------------- /config/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/config/tsconfig.json -------------------------------------------------------------------------------- /examples/digitsofpi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/examples/digitsofpi.ts -------------------------------------------------------------------------------- /examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/examples/index.ts -------------------------------------------------------------------------------- /examples/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/examples/misc.ts -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/examples/package.json -------------------------------------------------------------------------------- /examples/paralleldownload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/examples/paralleldownload.ts -------------------------------------------------------------------------------- /examples/primenumbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/examples/primenumbers.ts -------------------------------------------------------------------------------- /examples/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/examples/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/package.json -------------------------------------------------------------------------------- /src/async/BasicAsyncEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/BasicAsyncEnumerable.ts -------------------------------------------------------------------------------- /src/async/OrderedAsyncEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/OrderedAsyncEnumerable.ts -------------------------------------------------------------------------------- /src/async/_ordered/asAsyncKeyMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_ordered/asAsyncKeyMap.ts -------------------------------------------------------------------------------- /src/async/_ordered/asAsyncKeyMapSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_ordered/asAsyncKeyMapSync.ts -------------------------------------------------------------------------------- /src/async/_ordered/asAsyncSortedKeyValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_ordered/asAsyncSortedKeyValues.ts -------------------------------------------------------------------------------- /src/async/_ordered/asAsyncSortedKeyValuesSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_ordered/asAsyncSortedKeyValuesSync.ts -------------------------------------------------------------------------------- /src/async/_ordered/asKeyMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_ordered/asKeyMap.ts -------------------------------------------------------------------------------- /src/async/_ordered/asKeyMapSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_ordered/asKeyMapSync.ts -------------------------------------------------------------------------------- /src/async/_ordered/asSortedKeyValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_ordered/asSortedKeyValues.ts -------------------------------------------------------------------------------- /src/async/_ordered/asSortedKeyValuesSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_ordered/asSortedKeyValuesSync.ts -------------------------------------------------------------------------------- /src/async/_private/aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/aggregate.ts -------------------------------------------------------------------------------- /src/async/_private/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/all.ts -------------------------------------------------------------------------------- /src/async/_private/allAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/allAsync.ts -------------------------------------------------------------------------------- /src/async/_private/any.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/any.ts -------------------------------------------------------------------------------- /src/async/_private/anyAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/anyAsync.ts -------------------------------------------------------------------------------- /src/async/_private/append.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/append.ts -------------------------------------------------------------------------------- /src/async/_private/asParallel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/asParallel.ts -------------------------------------------------------------------------------- /src/async/_private/average.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/average.ts -------------------------------------------------------------------------------- /src/async/_private/averageAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/averageAsync.ts -------------------------------------------------------------------------------- /src/async/_private/chunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/chunk.ts -------------------------------------------------------------------------------- /src/async/_private/concatenate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/concatenate.ts -------------------------------------------------------------------------------- /src/async/_private/contains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/contains.ts -------------------------------------------------------------------------------- /src/async/_private/containsAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/containsAsync.ts -------------------------------------------------------------------------------- /src/async/_private/count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/count.ts -------------------------------------------------------------------------------- /src/async/_private/countAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/countAsync.ts -------------------------------------------------------------------------------- /src/async/_private/defaultIfEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/defaultIfEmpty.ts -------------------------------------------------------------------------------- /src/async/_private/distinct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/distinct.ts -------------------------------------------------------------------------------- /src/async/_private/distinctAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/distinctAsync.ts -------------------------------------------------------------------------------- /src/async/_private/each.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/each.ts -------------------------------------------------------------------------------- /src/async/_private/eachAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/eachAsync.ts -------------------------------------------------------------------------------- /src/async/_private/elementAt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/elementAt.ts -------------------------------------------------------------------------------- /src/async/_private/elementAtOrDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/elementAtOrDefault.ts -------------------------------------------------------------------------------- /src/async/_private/except.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/except.ts -------------------------------------------------------------------------------- /src/async/_private/exceptAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/exceptAsync.ts -------------------------------------------------------------------------------- /src/async/_private/first.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/first.ts -------------------------------------------------------------------------------- /src/async/_private/firstAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/firstAsync.ts -------------------------------------------------------------------------------- /src/async/_private/firstOrDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/firstOrDefault.ts -------------------------------------------------------------------------------- /src/async/_private/firstOrDefaultAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/firstOrDefaultAsync.ts -------------------------------------------------------------------------------- /src/async/_private/groupBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/groupBy.ts -------------------------------------------------------------------------------- /src/async/_private/groupByAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/groupByAsync.ts -------------------------------------------------------------------------------- /src/async/_private/groupByWithSel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/groupByWithSel.ts -------------------------------------------------------------------------------- /src/async/_private/groupJoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/groupJoin.ts -------------------------------------------------------------------------------- /src/async/_private/groupJoinAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/groupJoinAsync.ts -------------------------------------------------------------------------------- /src/async/_private/intersect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/intersect.ts -------------------------------------------------------------------------------- /src/async/_private/intersectAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/intersectAsync.ts -------------------------------------------------------------------------------- /src/async/_private/join.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/join.ts -------------------------------------------------------------------------------- /src/async/_private/last.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/last.ts -------------------------------------------------------------------------------- /src/async/_private/lastAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/lastAsync.ts -------------------------------------------------------------------------------- /src/async/_private/lastOrDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/lastOrDefault.ts -------------------------------------------------------------------------------- /src/async/_private/lastOrDefaultAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/lastOrDefaultAsync.ts -------------------------------------------------------------------------------- /src/async/_private/max.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/max.ts -------------------------------------------------------------------------------- /src/async/_private/maxAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/maxAsync.ts -------------------------------------------------------------------------------- /src/async/_private/min.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/min.ts -------------------------------------------------------------------------------- /src/async/_private/minAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/minAsync.ts -------------------------------------------------------------------------------- /src/async/_private/ofType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/ofType.ts -------------------------------------------------------------------------------- /src/async/_private/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/order.ts -------------------------------------------------------------------------------- /src/async/_private/orderBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/orderBy.ts -------------------------------------------------------------------------------- /src/async/_private/orderByAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/orderByAsync.ts -------------------------------------------------------------------------------- /src/async/_private/orderByDescending.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/orderByDescending.ts -------------------------------------------------------------------------------- /src/async/_private/orderByDescendingAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/orderByDescendingAsync.ts -------------------------------------------------------------------------------- /src/async/_private/orderDescending.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/orderDescending.ts -------------------------------------------------------------------------------- /src/async/_private/partition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/partition.ts -------------------------------------------------------------------------------- /src/async/_private/partitionAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/partitionAsync.ts -------------------------------------------------------------------------------- /src/async/_private/prepend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/prepend.ts -------------------------------------------------------------------------------- /src/async/_private/reverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/reverse.ts -------------------------------------------------------------------------------- /src/async/_private/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/select.ts -------------------------------------------------------------------------------- /src/async/_private/selectAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/selectAsync.ts -------------------------------------------------------------------------------- /src/async/_private/selectMany.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/selectMany.ts -------------------------------------------------------------------------------- /src/async/_private/selectManyAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/selectManyAsync.ts -------------------------------------------------------------------------------- /src/async/_private/sequenceEquals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/sequenceEquals.ts -------------------------------------------------------------------------------- /src/async/_private/sequenceEqualsAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/sequenceEqualsAsync.ts -------------------------------------------------------------------------------- /src/async/_private/single.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/single.ts -------------------------------------------------------------------------------- /src/async/_private/singleAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/singleAsync.ts -------------------------------------------------------------------------------- /src/async/_private/singleOrDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/singleOrDefault.ts -------------------------------------------------------------------------------- /src/async/_private/singleOrDefaultAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/singleOrDefaultAsync.ts -------------------------------------------------------------------------------- /src/async/_private/skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/skip.ts -------------------------------------------------------------------------------- /src/async/_private/skipWhile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/skipWhile.ts -------------------------------------------------------------------------------- /src/async/_private/skipWhileAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/skipWhileAsync.ts -------------------------------------------------------------------------------- /src/async/_private/sum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/sum.ts -------------------------------------------------------------------------------- /src/async/_private/sumAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/sumAsync.ts -------------------------------------------------------------------------------- /src/async/_private/take.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/take.ts -------------------------------------------------------------------------------- /src/async/_private/takeWhile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/takeWhile.ts -------------------------------------------------------------------------------- /src/async/_private/takeWhileAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/takeWhileAsync.ts -------------------------------------------------------------------------------- /src/async/_private/toArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/toArray.ts -------------------------------------------------------------------------------- /src/async/_private/toMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/toMap.ts -------------------------------------------------------------------------------- /src/async/_private/toMapAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/toMapAsync.ts -------------------------------------------------------------------------------- /src/async/_private/toObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/toObject.ts -------------------------------------------------------------------------------- /src/async/_private/toObjectAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/toObjectAsync.ts -------------------------------------------------------------------------------- /src/async/_private/toSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/toSet.ts -------------------------------------------------------------------------------- /src/async/_private/union.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/union.ts -------------------------------------------------------------------------------- /src/async/_private/unionAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/unionAsync.ts -------------------------------------------------------------------------------- /src/async/_private/where.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/where.ts -------------------------------------------------------------------------------- /src/async/_private/whereAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/whereAsync.ts -------------------------------------------------------------------------------- /src/async/_private/zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/zip.ts -------------------------------------------------------------------------------- /src/async/_private/zipAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/_private/zipAsync.ts -------------------------------------------------------------------------------- /src/async/isAsyncEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/isAsyncEnumerable.ts -------------------------------------------------------------------------------- /src/async/static/emptyAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/static/emptyAsync.ts -------------------------------------------------------------------------------- /src/async/static/enumerateObjectAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/static/enumerateObjectAsync.ts -------------------------------------------------------------------------------- /src/async/static/flattenAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/static/flattenAsync.ts -------------------------------------------------------------------------------- /src/async/static/fromAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/static/fromAsync.ts -------------------------------------------------------------------------------- /src/async/static/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/static/index.ts -------------------------------------------------------------------------------- /src/async/static/rangeAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/static/rangeAsync.ts -------------------------------------------------------------------------------- /src/async/static/repeatAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/async/static/repeatAsync.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/initializer/bindArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/initializer/bindArray.ts -------------------------------------------------------------------------------- /src/initializer/bindArrayEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/initializer/bindArrayEnumerable.ts -------------------------------------------------------------------------------- /src/initializer/bindLinq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/initializer/bindLinq.ts -------------------------------------------------------------------------------- /src/initializer/bindLinqAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/initializer/bindLinqAsync.ts -------------------------------------------------------------------------------- /src/initializer/bindLinqParallel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/initializer/bindLinqParallel.ts -------------------------------------------------------------------------------- /src/initializer/bindString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/initializer/bindString.ts -------------------------------------------------------------------------------- /src/initializer/initializeLinq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/initializer/initializeLinq.ts -------------------------------------------------------------------------------- /src/initializer/initializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/initializer/initializer.ts -------------------------------------------------------------------------------- /src/parallel/BasicParallelEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/BasicParallelEnumerable.ts -------------------------------------------------------------------------------- /src/parallel/OrderedParallelEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/OrderedParallelEnumerable.ts -------------------------------------------------------------------------------- /src/parallel/_ordered/asAsyncKeyMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_ordered/asAsyncKeyMap.ts -------------------------------------------------------------------------------- /src/parallel/_ordered/asAsyncKeyMapSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_ordered/asAsyncKeyMapSync.ts -------------------------------------------------------------------------------- /src/parallel/_ordered/asAsyncSortedKeyValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_ordered/asAsyncSortedKeyValues.ts -------------------------------------------------------------------------------- /src/parallel/_ordered/asAsyncSortedKeyValuesSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_ordered/asAsyncSortedKeyValuesSync.ts -------------------------------------------------------------------------------- /src/parallel/_ordered/asKeyMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_ordered/asKeyMap.ts -------------------------------------------------------------------------------- /src/parallel/_ordered/asKeyMapSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_ordered/asKeyMapSync.ts -------------------------------------------------------------------------------- /src/parallel/_ordered/asSortedKeyValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_ordered/asSortedKeyValues.ts -------------------------------------------------------------------------------- /src/parallel/_ordered/asSortedKeyValuesSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_ordered/asSortedKeyValuesSync.ts -------------------------------------------------------------------------------- /src/parallel/_private/_nextIteration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/_nextIteration.ts -------------------------------------------------------------------------------- /src/parallel/_private/_nextIterationAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/_nextIterationAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/_nextIterationWithIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/_nextIterationWithIndex.ts -------------------------------------------------------------------------------- /src/parallel/_private/_nextIterationWithIndexAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/_nextIterationWithIndexAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/_typeDataToArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/_typeDataToArray.ts -------------------------------------------------------------------------------- /src/parallel/_private/aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/aggregate.ts -------------------------------------------------------------------------------- /src/parallel/_private/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/all.ts -------------------------------------------------------------------------------- /src/parallel/_private/allAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/allAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/any.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/any.ts -------------------------------------------------------------------------------- /src/parallel/_private/anyAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/anyAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/append.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/append.ts -------------------------------------------------------------------------------- /src/parallel/_private/asAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/asAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/average.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/average.ts -------------------------------------------------------------------------------- /src/parallel/_private/averageAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/averageAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/chunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/chunk.ts -------------------------------------------------------------------------------- /src/parallel/_private/concatenate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/concatenate.ts -------------------------------------------------------------------------------- /src/parallel/_private/contains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/contains.ts -------------------------------------------------------------------------------- /src/parallel/_private/containsAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/containsAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/count.ts -------------------------------------------------------------------------------- /src/parallel/_private/countAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/countAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/defaultIfEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/defaultIfEmpty.ts -------------------------------------------------------------------------------- /src/parallel/_private/distinct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/distinct.ts -------------------------------------------------------------------------------- /src/parallel/_private/distinctAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/distinctAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/each.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/each.ts -------------------------------------------------------------------------------- /src/parallel/_private/eachAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/eachAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/elementAt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/elementAt.ts -------------------------------------------------------------------------------- /src/parallel/_private/elementAtOrDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/elementAtOrDefault.ts -------------------------------------------------------------------------------- /src/parallel/_private/except.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/except.ts -------------------------------------------------------------------------------- /src/parallel/_private/exceptAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/exceptAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/first.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/first.ts -------------------------------------------------------------------------------- /src/parallel/_private/firstAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/firstAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/firstOrDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/firstOrDefault.ts -------------------------------------------------------------------------------- /src/parallel/_private/firstOrDefaultAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/firstOrDefaultAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/groupBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/groupBy.ts -------------------------------------------------------------------------------- /src/parallel/_private/groupByAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/groupByAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/groupByWithSel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/groupByWithSel.ts -------------------------------------------------------------------------------- /src/parallel/_private/groupJoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/groupJoin.ts -------------------------------------------------------------------------------- /src/parallel/_private/groupJoinAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/groupJoinAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/intersect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/intersect.ts -------------------------------------------------------------------------------- /src/parallel/_private/intersectAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/intersectAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/join.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/join.ts -------------------------------------------------------------------------------- /src/parallel/_private/last.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/last.ts -------------------------------------------------------------------------------- /src/parallel/_private/lastAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/lastAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/lastOrDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/lastOrDefault.ts -------------------------------------------------------------------------------- /src/parallel/_private/lastOrDefaultAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/lastOrDefaultAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/max.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/max.ts -------------------------------------------------------------------------------- /src/parallel/_private/maxAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/maxAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/min.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/min.ts -------------------------------------------------------------------------------- /src/parallel/_private/minAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/minAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/ofType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/ofType.ts -------------------------------------------------------------------------------- /src/parallel/_private/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/order.ts -------------------------------------------------------------------------------- /src/parallel/_private/orderBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/orderBy.ts -------------------------------------------------------------------------------- /src/parallel/_private/orderByAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/orderByAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/orderByDescending.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/orderByDescending.ts -------------------------------------------------------------------------------- /src/parallel/_private/orderByDescendingAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/orderByDescendingAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/orderDescending.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/orderDescending.ts -------------------------------------------------------------------------------- /src/parallel/_private/partition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/partition.ts -------------------------------------------------------------------------------- /src/parallel/_private/partitionAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/partitionAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/prepend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/prepend.ts -------------------------------------------------------------------------------- /src/parallel/_private/reverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/reverse.ts -------------------------------------------------------------------------------- /src/parallel/_private/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/select.ts -------------------------------------------------------------------------------- /src/parallel/_private/selectAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/selectAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/selectMany.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/selectMany.ts -------------------------------------------------------------------------------- /src/parallel/_private/selectManyAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/selectManyAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/sequenceEquals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/sequenceEquals.ts -------------------------------------------------------------------------------- /src/parallel/_private/sequenceEqualsAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/sequenceEqualsAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/single.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/single.ts -------------------------------------------------------------------------------- /src/parallel/_private/singleAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/singleAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/singleOrDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/singleOrDefault.ts -------------------------------------------------------------------------------- /src/parallel/_private/singleOrDefaultAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/singleOrDefaultAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/skip.ts -------------------------------------------------------------------------------- /src/parallel/_private/skipWhile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/skipWhile.ts -------------------------------------------------------------------------------- /src/parallel/_private/skipWhileAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/skipWhileAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/sum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/sum.ts -------------------------------------------------------------------------------- /src/parallel/_private/sumAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/sumAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/take.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/take.ts -------------------------------------------------------------------------------- /src/parallel/_private/takeWhile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/takeWhile.ts -------------------------------------------------------------------------------- /src/parallel/_private/takeWhileAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/takeWhileAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/toArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/toArray.ts -------------------------------------------------------------------------------- /src/parallel/_private/toMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/toMap.ts -------------------------------------------------------------------------------- /src/parallel/_private/toMapAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/toMapAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/toObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/toObject.ts -------------------------------------------------------------------------------- /src/parallel/_private/toObjectAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/toObjectAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/toSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/toSet.ts -------------------------------------------------------------------------------- /src/parallel/_private/union.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/union.ts -------------------------------------------------------------------------------- /src/parallel/_private/unionAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/unionAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/where.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/where.ts -------------------------------------------------------------------------------- /src/parallel/_private/whereAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/whereAsync.ts -------------------------------------------------------------------------------- /src/parallel/_private/zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/zip.ts -------------------------------------------------------------------------------- /src/parallel/_private/zipAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/_private/zipAsync.ts -------------------------------------------------------------------------------- /src/parallel/isParallelEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/isParallelEnumerable.ts -------------------------------------------------------------------------------- /src/parallel/static/emptyParallel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/static/emptyParallel.ts -------------------------------------------------------------------------------- /src/parallel/static/flattenParallel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/static/flattenParallel.ts -------------------------------------------------------------------------------- /src/parallel/static/fromParallel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/static/fromParallel.ts -------------------------------------------------------------------------------- /src/parallel/static/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/static/index.ts -------------------------------------------------------------------------------- /src/parallel/static/rangeParallel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/static/rangeParallel.ts -------------------------------------------------------------------------------- /src/parallel/static/repeatParallel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/parallel/static/repeatParallel.ts -------------------------------------------------------------------------------- /src/shared/ArgumentOutOfRangeException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/shared/ArgumentOutOfRangeException.ts -------------------------------------------------------------------------------- /src/shared/EqualityComparer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/shared/EqualityComparer.ts -------------------------------------------------------------------------------- /src/shared/ErrorString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/shared/ErrorString.ts -------------------------------------------------------------------------------- /src/shared/InvalidOperationException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/shared/InvalidOperationException.ts -------------------------------------------------------------------------------- /src/shared/NumberComparer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/shared/NumberComparer.ts -------------------------------------------------------------------------------- /src/shared/StrictEqualityComparer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/shared/StrictEqualityComparer.ts -------------------------------------------------------------------------------- /src/shared/StringifyComparer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/shared/StringifyComparer.ts -------------------------------------------------------------------------------- /src/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/shared/index.ts -------------------------------------------------------------------------------- /src/sync/ArrayEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/ArrayEnumerable.ts -------------------------------------------------------------------------------- /src/sync/BasicEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/BasicEnumerable.ts -------------------------------------------------------------------------------- /src/sync/Grouping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/Grouping.ts -------------------------------------------------------------------------------- /src/sync/OrderedEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/OrderedEnumerable.ts -------------------------------------------------------------------------------- /src/sync/_ordered/asKeyMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_ordered/asKeyMap.ts -------------------------------------------------------------------------------- /src/sync/_ordered/asKeyMapAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_ordered/asKeyMapAsync.ts -------------------------------------------------------------------------------- /src/sync/_ordered/asSortedKeyValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_ordered/asSortedKeyValues.ts -------------------------------------------------------------------------------- /src/sync/_ordered/asSortedKeyValuesAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_ordered/asSortedKeyValuesAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/aggregate.ts -------------------------------------------------------------------------------- /src/sync/_private/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/all.ts -------------------------------------------------------------------------------- /src/sync/_private/allAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/allAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/any.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/any.ts -------------------------------------------------------------------------------- /src/sync/_private/anyAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/anyAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/append.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/append.ts -------------------------------------------------------------------------------- /src/sync/_private/asAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/asAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/asParallel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/asParallel.ts -------------------------------------------------------------------------------- /src/sync/_private/average.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/average.ts -------------------------------------------------------------------------------- /src/sync/_private/averageAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/averageAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/chunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/chunk.ts -------------------------------------------------------------------------------- /src/sync/_private/concatenate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/concatenate.ts -------------------------------------------------------------------------------- /src/sync/_private/contains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/contains.ts -------------------------------------------------------------------------------- /src/sync/_private/containsAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/containsAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/count.ts -------------------------------------------------------------------------------- /src/sync/_private/countAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/countAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/defaultIfEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/defaultIfEmpty.ts -------------------------------------------------------------------------------- /src/sync/_private/distinct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/distinct.ts -------------------------------------------------------------------------------- /src/sync/_private/distinctAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/distinctAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/each.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/each.ts -------------------------------------------------------------------------------- /src/sync/_private/eachAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/eachAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/elementAt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/elementAt.ts -------------------------------------------------------------------------------- /src/sync/_private/elementAtOrDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/elementAtOrDefault.ts -------------------------------------------------------------------------------- /src/sync/_private/except.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/except.ts -------------------------------------------------------------------------------- /src/sync/_private/exceptAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/exceptAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/first.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/first.ts -------------------------------------------------------------------------------- /src/sync/_private/firstAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/firstAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/firstOrDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/firstOrDefault.ts -------------------------------------------------------------------------------- /src/sync/_private/firstOrDefaultAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/firstOrDefaultAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/groupBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/groupBy.ts -------------------------------------------------------------------------------- /src/sync/_private/groupByAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/groupByAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/groupByShared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/groupByShared.ts -------------------------------------------------------------------------------- /src/sync/_private/groupByWithResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/groupByWithResult.ts -------------------------------------------------------------------------------- /src/sync/_private/groupByWithResultAndSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/groupByWithResultAndSelector.ts -------------------------------------------------------------------------------- /src/sync/_private/groupByWithSel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/groupByWithSel.ts -------------------------------------------------------------------------------- /src/sync/_private/groupJoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/groupJoin.ts -------------------------------------------------------------------------------- /src/sync/_private/groupJoinAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/groupJoinAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/intersect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/intersect.ts -------------------------------------------------------------------------------- /src/sync/_private/intersectAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/intersectAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/join.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/join.ts -------------------------------------------------------------------------------- /src/sync/_private/last.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/last.ts -------------------------------------------------------------------------------- /src/sync/_private/lastAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/lastAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/lastOrDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/lastOrDefault.ts -------------------------------------------------------------------------------- /src/sync/_private/lastOrDefaultAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/lastOrDefaultAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/max.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/max.ts -------------------------------------------------------------------------------- /src/sync/_private/maxAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/maxAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/min.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/min.ts -------------------------------------------------------------------------------- /src/sync/_private/minAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/minAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/ofType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/ofType.ts -------------------------------------------------------------------------------- /src/sync/_private/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/order.ts -------------------------------------------------------------------------------- /src/sync/_private/orderBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/orderBy.ts -------------------------------------------------------------------------------- /src/sync/_private/orderByAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/orderByAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/orderByDescending.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/orderByDescending.ts -------------------------------------------------------------------------------- /src/sync/_private/orderByDescendingAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/orderByDescendingAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/orderDescending.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/orderDescending.ts -------------------------------------------------------------------------------- /src/sync/_private/partition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/partition.ts -------------------------------------------------------------------------------- /src/sync/_private/partitionAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/partitionAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/prepend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/prepend.ts -------------------------------------------------------------------------------- /src/sync/_private/reverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/reverse.ts -------------------------------------------------------------------------------- /src/sync/_private/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/select.ts -------------------------------------------------------------------------------- /src/sync/_private/selectAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/selectAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/selectMany.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/selectMany.ts -------------------------------------------------------------------------------- /src/sync/_private/selectManyAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/selectManyAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/sequenceEquals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/sequenceEquals.ts -------------------------------------------------------------------------------- /src/sync/_private/sequenceEqualsAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/sequenceEqualsAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/single.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/single.ts -------------------------------------------------------------------------------- /src/sync/_private/singleAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/singleAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/singleOrDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/singleOrDefault.ts -------------------------------------------------------------------------------- /src/sync/_private/singleOrDefaultAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/singleOrDefaultAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/skip.ts -------------------------------------------------------------------------------- /src/sync/_private/skipWhile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/skipWhile.ts -------------------------------------------------------------------------------- /src/sync/_private/skipWhileAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/skipWhileAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/sum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/sum.ts -------------------------------------------------------------------------------- /src/sync/_private/sumAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/sumAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/take.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/take.ts -------------------------------------------------------------------------------- /src/sync/_private/takeWhile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/takeWhile.ts -------------------------------------------------------------------------------- /src/sync/_private/takeWhileAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/takeWhileAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/toArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/toArray.ts -------------------------------------------------------------------------------- /src/sync/_private/toMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/toMap.ts -------------------------------------------------------------------------------- /src/sync/_private/toMapAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/toMapAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/toObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/toObject.ts -------------------------------------------------------------------------------- /src/sync/_private/toObjectAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/toObjectAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/toSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/toSet.ts -------------------------------------------------------------------------------- /src/sync/_private/union.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/union.ts -------------------------------------------------------------------------------- /src/sync/_private/unionAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/unionAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/where.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/where.ts -------------------------------------------------------------------------------- /src/sync/_private/whereAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/whereAsync.ts -------------------------------------------------------------------------------- /src/sync/_private/zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/zip.ts -------------------------------------------------------------------------------- /src/sync/_private/zipAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/_private/zipAsync.ts -------------------------------------------------------------------------------- /src/sync/isEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/isEnumerable.ts -------------------------------------------------------------------------------- /src/sync/static/empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/static/empty.ts -------------------------------------------------------------------------------- /src/sync/static/enumerateObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/static/enumerateObject.ts -------------------------------------------------------------------------------- /src/sync/static/flatten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/static/flatten.ts -------------------------------------------------------------------------------- /src/sync/static/from.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/static/from.ts -------------------------------------------------------------------------------- /src/sync/static/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/static/index.ts -------------------------------------------------------------------------------- /src/sync/static/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/static/range.ts -------------------------------------------------------------------------------- /src/sync/static/repeat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/sync/static/repeat.ts -------------------------------------------------------------------------------- /src/types/Flatten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/Flatten.ts -------------------------------------------------------------------------------- /src/types/IAsyncEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/IAsyncEnumerable.ts -------------------------------------------------------------------------------- /src/types/IAsyncEqualityComparer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/IAsyncEqualityComparer.ts -------------------------------------------------------------------------------- /src/types/IAsyncParallel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/IAsyncParallel.ts -------------------------------------------------------------------------------- /src/types/IComparer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/IComparer.ts -------------------------------------------------------------------------------- /src/types/IConstructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/IConstructor.ts -------------------------------------------------------------------------------- /src/types/IEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/IEnumerable.ts -------------------------------------------------------------------------------- /src/types/IEqualityComparer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/IEqualityComparer.ts -------------------------------------------------------------------------------- /src/types/IGrouping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/IGrouping.ts -------------------------------------------------------------------------------- /src/types/IOrderedAsyncEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/IOrderedAsyncEnumerable.ts -------------------------------------------------------------------------------- /src/types/IOrderedEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/IOrderedEnumerable.ts -------------------------------------------------------------------------------- /src/types/IOrderedParallelEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/IOrderedParallelEnumerable.ts -------------------------------------------------------------------------------- /src/types/IParallelEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/IParallelEnumerable.ts -------------------------------------------------------------------------------- /src/types/IPrototype.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/IPrototype.ts -------------------------------------------------------------------------------- /src/types/InferType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/InferType.ts -------------------------------------------------------------------------------- /src/types/IterableType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/IterableType.ts -------------------------------------------------------------------------------- /src/types/LimitedTypedData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/LimitedTypedData.ts -------------------------------------------------------------------------------- /src/types/ParallelGeneratorType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/ParallelGeneratorType.ts -------------------------------------------------------------------------------- /src/types/SelectorKeyType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/SelectorKeyType.ts -------------------------------------------------------------------------------- /src/types/TypedData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/TypedData.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/esmtest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/esmtest/index.ts -------------------------------------------------------------------------------- /tests/esmtest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/esmtest/package.json -------------------------------------------------------------------------------- /tests/esmtest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/esmtest/tsconfig.json -------------------------------------------------------------------------------- /tests/moduletest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/moduletest/index.ts -------------------------------------------------------------------------------- /tests/moduletest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/moduletest/package.json -------------------------------------------------------------------------------- /tests/moduletest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/moduletest/tsconfig.json -------------------------------------------------------------------------------- /tests/nodetest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/nodetest/index.ts -------------------------------------------------------------------------------- /tests/nodetest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/nodetest/package.json -------------------------------------------------------------------------------- /tests/nodetest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/nodetest/tsconfig.json -------------------------------------------------------------------------------- /tests/reacttest/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/reacttest/.eslintrc.json -------------------------------------------------------------------------------- /tests/reacttest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/reacttest/.gitignore -------------------------------------------------------------------------------- /tests/reacttest/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/reacttest/next-env.d.ts -------------------------------------------------------------------------------- /tests/reacttest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/reacttest/package.json -------------------------------------------------------------------------------- /tests/reacttest/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/reacttest/pages/_app.tsx -------------------------------------------------------------------------------- /tests/reacttest/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/reacttest/pages/api/hello.ts -------------------------------------------------------------------------------- /tests/reacttest/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/reacttest/pages/index.tsx -------------------------------------------------------------------------------- /tests/reacttest/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/reacttest/public/favicon.ico -------------------------------------------------------------------------------- /tests/reacttest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/reacttest/tsconfig.json -------------------------------------------------------------------------------- /tests/unittests/TestHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/TestHelpers.ts -------------------------------------------------------------------------------- /tests/unittests/initialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/initialize.ts -------------------------------------------------------------------------------- /tests/unittests/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/jest.config.js -------------------------------------------------------------------------------- /tests/unittests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/package.json -------------------------------------------------------------------------------- /tests/unittests/tests/Aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Aggregate.ts -------------------------------------------------------------------------------- /tests/unittests/tests/All.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/All.ts -------------------------------------------------------------------------------- /tests/unittests/tests/AllAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/AllAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Any.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Any.ts -------------------------------------------------------------------------------- /tests/unittests/tests/AnyAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/AnyAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Append.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Append.ts -------------------------------------------------------------------------------- /tests/unittests/tests/AsAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/AsAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/AsParallel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/AsParallel.ts -------------------------------------------------------------------------------- /tests/unittests/tests/AsyncEnumerableIteration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/AsyncEnumerableIteration.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Average.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Average.ts -------------------------------------------------------------------------------- /tests/unittests/tests/AverageAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/AverageAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Chunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Chunk.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Concatenate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Concatenate.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Contains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Contains.ts -------------------------------------------------------------------------------- /tests/unittests/tests/ContainsAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/ContainsAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Count.ts -------------------------------------------------------------------------------- /tests/unittests/tests/CountAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/CountAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/DefaultIfEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/DefaultIfEmpty.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Distinct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Distinct.ts -------------------------------------------------------------------------------- /tests/unittests/tests/DistinctAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/DistinctAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Each.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Each.ts -------------------------------------------------------------------------------- /tests/unittests/tests/EachAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/EachAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/ElementAt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/ElementAt.ts -------------------------------------------------------------------------------- /tests/unittests/tests/ElementAtOrDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/ElementAtOrDefault.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Except.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Except.ts -------------------------------------------------------------------------------- /tests/unittests/tests/ExceptAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/ExceptAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/First.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/First.ts -------------------------------------------------------------------------------- /tests/unittests/tests/FirstAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/FirstAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/FirstOrDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/FirstOrDefault.ts -------------------------------------------------------------------------------- /tests/unittests/tests/FirstOrDefaultAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/FirstOrDefaultAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/GroupBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/GroupBy.ts -------------------------------------------------------------------------------- /tests/unittests/tests/GroupByAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/GroupByAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/GroupByWithSel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/GroupByWithSel.ts -------------------------------------------------------------------------------- /tests/unittests/tests/GroupJoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/GroupJoin.ts -------------------------------------------------------------------------------- /tests/unittests/tests/GroupJoinAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/GroupJoinAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Intersect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Intersect.ts -------------------------------------------------------------------------------- /tests/unittests/tests/IntersectAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/IntersectAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/JoinByKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/JoinByKey.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Last.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Last.ts -------------------------------------------------------------------------------- /tests/unittests/tests/LastAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/LastAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/LastOrDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/LastOrDefault.ts -------------------------------------------------------------------------------- /tests/unittests/tests/LastOrDefaultAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/LastOrDefaultAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Max.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Max.ts -------------------------------------------------------------------------------- /tests/unittests/tests/MaxAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/MaxAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Min.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Min.ts -------------------------------------------------------------------------------- /tests/unittests/tests/MinAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/MinAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/OfType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/OfType.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Order.ts -------------------------------------------------------------------------------- /tests/unittests/tests/OrderBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/OrderBy.ts -------------------------------------------------------------------------------- /tests/unittests/tests/OrderByAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/OrderByAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/OrderByDescending.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/OrderByDescending.ts -------------------------------------------------------------------------------- /tests/unittests/tests/OrderByDescendingAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/OrderByDescendingAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/OrderDescending.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/OrderDescending.ts -------------------------------------------------------------------------------- /tests/unittests/tests/ParallelEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/ParallelEnumerable.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Partition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Partition.ts -------------------------------------------------------------------------------- /tests/unittests/tests/PartitionAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/PartitionAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Prepend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Prepend.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Reverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Reverse.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Select.ts -------------------------------------------------------------------------------- /tests/unittests/tests/SelectAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/SelectAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/SelectMany.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/SelectMany.ts -------------------------------------------------------------------------------- /tests/unittests/tests/SelectManyAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/SelectManyAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/SequenceEquals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/SequenceEquals.ts -------------------------------------------------------------------------------- /tests/unittests/tests/SequenceEqualsAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/SequenceEqualsAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Single.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Single.ts -------------------------------------------------------------------------------- /tests/unittests/tests/SingleAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/SingleAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/SingleOrDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/SingleOrDefault.ts -------------------------------------------------------------------------------- /tests/unittests/tests/SingleOrDefaultAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/SingleOrDefaultAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Skip.ts -------------------------------------------------------------------------------- /tests/unittests/tests/SkipWhile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/SkipWhile.ts -------------------------------------------------------------------------------- /tests/unittests/tests/SkipWhileAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/SkipWhileAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Sum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Sum.ts -------------------------------------------------------------------------------- /tests/unittests/tests/SumAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/SumAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Take.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Take.ts -------------------------------------------------------------------------------- /tests/unittests/tests/TakeWhile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/TakeWhile.ts -------------------------------------------------------------------------------- /tests/unittests/tests/TakeWhileAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/TakeWhileAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/ThenBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/ThenBy.ts -------------------------------------------------------------------------------- /tests/unittests/tests/ThenByAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/ThenByAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/ToArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/ToArray.ts -------------------------------------------------------------------------------- /tests/unittests/tests/ToMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/ToMap.ts -------------------------------------------------------------------------------- /tests/unittests/tests/ToMapAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/ToMapAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/ToSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/ToSet.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Union.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Union.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Where.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Where.ts -------------------------------------------------------------------------------- /tests/unittests/tests/WhereAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/WhereAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/Zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/Zip.ts -------------------------------------------------------------------------------- /tests/unittests/tests/ZipAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/ZipAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/examples/MiscExamples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/examples/MiscExamples.ts -------------------------------------------------------------------------------- /tests/unittests/tests/examples/PrimeNumbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/examples/PrimeNumbers.ts -------------------------------------------------------------------------------- /tests/unittests/tests/is/IsEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/is/IsEnumerable.ts -------------------------------------------------------------------------------- /tests/unittests/tests/is/isAsyncEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/is/isAsyncEnumerable.ts -------------------------------------------------------------------------------- /tests/unittests/tests/is/isParallelEnumerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/is/isParallelEnumerable.ts -------------------------------------------------------------------------------- /tests/unittests/tests/other/Exceptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/other/Exceptions.ts -------------------------------------------------------------------------------- /tests/unittests/tests/other/From.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/other/From.ts -------------------------------------------------------------------------------- /tests/unittests/tests/other/fromAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/other/fromAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tests/staticmethods/Empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/staticmethods/Empty.ts -------------------------------------------------------------------------------- /tests/unittests/tests/staticmethods/EnumerateObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/staticmethods/EnumerateObject.ts -------------------------------------------------------------------------------- /tests/unittests/tests/staticmethods/Flatten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/staticmethods/Flatten.ts -------------------------------------------------------------------------------- /tests/unittests/tests/staticmethods/Range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/staticmethods/Range.ts -------------------------------------------------------------------------------- /tests/unittests/tests/staticmethods/Repeat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/staticmethods/Repeat.ts -------------------------------------------------------------------------------- /tests/unittests/tests/toObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/toObject.ts -------------------------------------------------------------------------------- /tests/unittests/tests/toObjectAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tests/toObjectAsync.ts -------------------------------------------------------------------------------- /tests/unittests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tests/unittests/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozine/LinqToTypeScript/HEAD/tsconfig.json --------------------------------------------------------------------------------