![]() |
VOOZH | about |
dotnet add package morelinq --version 4.4.0
NuGet\Install-Package morelinq -Version 4.4.0
<PackageReference Include="morelinq" Version="4.4.0" />
<PackageVersion Include="morelinq" Version="4.4.0" />Directory.Packages.props
<PackageReference Include="morelinq" />Project file
paket add morelinq --version 4.4.0
#r "nuget: morelinq, 4.4.0"
#:package morelinq@4.4.0
#addin nuget:?package=morelinq&version=4.4.0Install as a Cake Addin
#tool nuget:?package=morelinq&version=4.4.0Install as a Cake Tool
LINQ to Objects is missing a few desirable features.
This project enhances LINQ to Objects with extra methods, in a manner which keeps to the spirit of LINQ.
MoreLINQ is available for download and installation as NuGet packages.
Documentation for the stable and beta releases can be found at morelinq.github.io.
MoreLINQ can be used in one of two ways. The simplest is to just import the
MoreLinq namespace and all extension methods become instantly available for
you to use on the types they extend (typically some instantiation of
IEnumerable<T>). In some very rare instances, however, doing so can cause
conflicts with other libraries you may be using that incidentally also extend
the same type with an identically named method and signature. This happened
with MoreLINQ, for example, when Microsoft .NET Framework 4.0 introduced
Zip and MoreLINQ already had one. Starting with version 3.0
of MoreLINQ, you can reduce the potential for present (or even future)
conflicts by individually importing just the extension methods you need using
the static imports feature introduced in C# 6:
using static MoreLinq.Extensions.LagExtension;
using static MoreLinq.Extensions.LeadExtension;
In the example above, only the Lag and Lead extension
methods will be available in scope.
Apart from extension methods, MoreLINQ also offers regular static method that
generate (instead of operating on) sequences, like Unfold,
Random, Sequence and others. If you want to use these
while statically importing other individual extension methods, you can do so via
aliasing:
using static MoreLinq.Extensions.LagExtension;
using static MoreLinq.Extensions.LeadExtension;
using MoreEnumerable = MoreLinq.MoreEnumerable;
In the example above, Lag and Lead will be available as
extension methods as well as all the regular static methods on
MoreEnumerable but without any of the extension methods offered by
MoreEnumerable.
Run either build.cmd if building on Windows or build.sh if building on macOS
or a Linux distribution supported by .NET.
Some code in the project is generated using T4 templates. To regenerate
the code from modified templates, run MoreLinq\tt.cmd (Windows) or
MoreLinq/tt.sh depending on your platform.
Building the documentation is supported on Windows only and requires
Sandcastle Help File Builder (SHFB). Executing builddocs.cmd
generates the documentation in the docs/api directory. It can be browsed
locally using any HTTP server of static files, like
dotnet-serve.
Ensures that a source sequence of disposable objects are all acquired successfully. If the acquisition of any one fails then those successfully acquired till that point are disposed.
Applies multiple accumulators sequentially in a single pass over a sequence.
This method has 7 overloads.
Applies a right-associative accumulator function over a sequence. This operator is the right-associative version of the Aggregate LINQ operator.
This method has 3 overloads.
Returns a sequence consisting of the head element and the given tail elements.
Asserts that all elements of a sequence meet a given condition otherwise throws an exception.
This method has 2 overloads.
Asserts that a source sequence contains a given count of elements.
This method has 2 overloads.
Determines whether or not the number of elements in the sequence is greater than or equal to the given integer.
Determines whether or not the number of elements in the sequence is lesser than or equal to the given integer.
Inserts the elements of a sequence into another sequence at a specified index from the tail of the sequence, where zero always represents the last position, one represents the second-last element, two represents the third-last element and so on.
Batches the source sequence into sized buckets.
This method has 4 overloads, 2 of which are experimental.
Returns the Cartesian product of two or more sequences by combining each element from the sequences and applying a user-defined projection to the set.
This method has 7 overloads.
Applies a function to each element of the source sequence and returns a new
sequence of result elements for source elements where the function returns a
couple (2-tuple) having a true as its first element and result as the
second.
Compares two sequences and returns an integer that indicates whether the first sequence has fewer, the same or more elements than the second sequence.
Returns a sequence consisting of the head element and the given tail elements.
This extension was rendered obsolete in version 3.0 and eventually removed in
version 4.0. Use Append from .NET instead that's been available
since .NET Standard 1.6+, .NET Core 1.0+ and .NET Framework 4.7.1+.
Completely consumes the given sequence. This method uses immediate execution, and doesn't store any data during execution
Determines whether or not the number of elements in the sequence is between an inclusive range of minimum and maximum integers.
Applies a key-generating function to each element of a sequence and returns a sequence of unique keys and their number of occurrences in the original sequence.
This method has 2 overloads.
Provides a countdown counter for a given count of elements at the tail of the sequence where zero always represents the last element, one represents the second-last element, two represents the third-last element and so on.
Returns all distinct elements of the given source, where "distinctness" is determined via a projection and the default equality comparer for the projected type.
This method has 2 overloads.
Returns all duplicate elements of the given source.
This method has 2 overloads.
Determines whether the end of the first sequence is equivalent to the second sequence.
This method has 2 overloads.
Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences. An exception is thrown if the input sequences are of different lengths.
This method has 3 overloads.
Determines whether or not the number of elements in the sequence is equals to the given integer.
Returns the set of elements in the first sequence which aren't in the second sequence, according to a given key selector.
This method has 2 overloads.
Excludes elements from a sequence starting at a given index
Returns the elements of a sequence and falls back to another if the original sequence is empty.
This method has 6 overloads.
Returns a sequence with each null reference or value in the source replaced with the following non-null reference or value in that sequence.
This method has 3 overloads.
Returns a sequence with each null reference or value in the source replaced with the previous non-null reference or value seen in that sequence.
This method has 3 overloads.
Flattens a sequence containing arbitrarily-nested sequences.
This method has 3 overloads.
Returns the result of applying a function to a sequence with 1 to 16 elements.
This method has 16 overloads.
Immediately executes the given action on each element in the source sequence.
This method has 2 overloads.
Returns a sequence containing the values resulting from invoking (in order) each function in the source sequence of functions.
This method has 4 overloads.
Performs a Full Group Join between the and sequences.
This method has 4 overloads.
Performs a full outer join between two sequences.
This method has 4 overloads.
Returns a sequence of values consecutively generated by a generator function
Returns a sequence of values based on indexes
Groups the adjacent elements of a sequence according to a specified key selector function.
This method has 6 overloads.
Incremental was redundant with Pairwise and so deprecated since version
2.1. It was eventually removed in version 3.0.
Returns a sequence of where the key is the zero-based index of the value in the source sequence.
This method has 2 overloads.
Applies a key-generating function to each element of a sequence and returns a sequence that contains the elements of the original sequence as well its key and index inside the group of its key. An additional argument specifies a comparer to use for testing equivalence of keys.
This method has 2 overloads.
Inserts the elements of a sequence into another sequence at a specified index.
Interleaves the elements of two or more sequences into a single sequence, skipping sequences as they are consumed.
Produces a projection of a sequence by evaluating pairs of elements separated by a negative offset.
This method has 2 overloads.
Produces a projection of a sequence by evaluating pairs of elements separated by a positive offset.
This method has 2 overloads.
Performs a left outer join between two sequences.
This method has 4 overloads.
⚠️ This method is obsolete. Use Maxima instead.
Returns the maxima (maximal elements) of the given sequence, based on the given projection.
This method has 2 overloads.
Returns the maxima (maximal elements) of the given sequence, based on the given projection.
This method has 2 overloads.
⚠️ This method is obsolete. Use Minima instead.
Returns the minima (minimal elements) of the given sequence, based on the given projection.
This method has 2 overloads.
Returns the minima (minimal elements) of the given sequence, based on the given projection.
This method has 2 overloads.
Returns a sequence with a range of elements in the source sequence moved to a new offset.
Sorts the elements of a sequence in a particular direction (ascending, descending) according to a key.
This method has 2 overloads.
Merges two ordered sequences into one. Where the elements equal in both sequences, the element from the first sequence is returned in the resulting sequence.
This method has 7 overloads.
Pads a sequence with default values if it is narrower (shorter in length) than a given width.
This method has 3 overloads.
Pads a sequence with default values in the beginning if it is narrower (shorter in length) than a given width.
This method has 3 overloads.
Returns a sequence resulting from applying a function to each element in the source sequence and its predecessor, with the exception of the first element which is only returned as the predecessor of the second element
Combines OrderBy (where element is key) and Take in a single operation.
This method has 4 overloads.
Combines OrderBy and Take in a single operation.
This method has 4 overloads.
Partitions a sequence by a predicate, or a grouping by Boolean keys or up to 3 sets of keys.
This method has 10 overloads.
Generates a sequence of lists that represent the permutations of the original sequence
Executes the given action on each element in the source sequence and yields it
Prepends a single value to a sequence
Performs a pre-scan (exclusive prefix sum) on a sequence of elements
Returns an infinite sequence of random integers using the standard .NET random number generator.
This method has 6 overloads.
Returns an infinite sequence of random double values between 0.0 and 1.0.
This method has 2 overloads.
Returns a sequence of a specified size of random elements from the original sequence.
This method has 2 overloads.
Ranks each item in the sequence in descending ordering using a default comparer.
This method has 2 overloads.
Ranks each item in the sequence in descending ordering by a specified key using a default comparer.
This method has 2 overloads.
Repeats the sequence indefinitely or a specific number of times.
This method has 2 overloads.
Returns a single-element sequence containing the item provided.
Performs a right outer join between two sequences.
This method has 4 overloads.
Run-length encodes a sequence by converting consecutive instances of the same
element into a KeyValuePair<T, int> representing the item and its occurrence
count.
This method has 2 overloads.
Peforms a scan (inclusive prefix sum) on a sequence of elements.
This method has 2 overloads.
Applies an accumulator function over sequence element keys, returning the keys along with intermediate accumulator states.
This method has 2 overloads.
Peforms a right-associative scan (inclusive prefix) on a sequence of elements. This operator is the right-associative version of the Scan operator.
This method has 2 overloads.
Divides a sequence into multiple sequences by using a segment detector based on the original sequence.
This method has 3 overloads.
Generates a sequence of integral numbers within the (inclusive) specified range.
This method has 2 overloads.
Returns a sequence of elements in random order from the original sequence.
This method has 2 overloads.
Bypasses a specified number of elements at the end of the sequence.
Removes elements from the end of a sequence as long as a specified condition is true.
Skips items from the input sequence until the given predicate returns true when applied to the current source item; that item will be the last skipped
Extracts elements from a sequence at a particular zero-based starting index
Merges two or more sequences that are in a common order (either ascending or descending) into a single sequence that preserves that order.
This method has 2 overloads.
Splits the source sequence by a separator.
This method has 12 overloads.
Determines whether the beginning of the first sequence is equivalent to the second sequence.
This method has 2 overloads.
Returns a sequence of representing all of the subsets of any size that are part of the original sequence.
This method has 2 overloads.
Returns a sequence resulting from applying a function to each element in the source sequence with additional parameters indicating whether the element is the first and/or last of the sequence
Returns every N-th element of a source sequence
Returns a specified number of contiguous elements from the end of a sequence
Returns items from the input sequence until the given predicate returns true when applied to the current source item; that item will be the last returned
Performs a subsequent ordering of elements in a sequence in a particular direction (ascending, descending) according to a key.
This method has 2 overloads.
Creates an array from an IEnumerable<T> where a function is used to determine the index at which an element will be placed in the array.
This method has 6 overloads.
Appends elements in the sequence as rows of a given object with a set of lambda expressions specifying which members (property or field) of each element in the sequence will supply the column values.
This method has 4 overloads.
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
This method has 15 overloads.
Creates a dictionary from a sequence of key-value pair elements or tuples of 2.
This method has 4 overloads.
Returns a hash-set of the source items using the default equality comparer for the type.
This method has 2 overloads.
Creates a lookup from a sequence of key-value pair elements or tuples of 2.
This method has 4 overloads.
Transposes the rows of a sequence into columns.
Traverses a tree in a breadth-first fashion, starting at a root node and using a user-defined function to get the children at each node of the tree.
Traverses a tree in a depth-first fashion, starting at a root node and using a user-defined function to get the children at each node of the tree.
Traces the elements of a source sequence for diagnostics.
This method has 3 overloads.
Returns a sequence generated by applying a state to the generator function, and from its result, determines if the sequence should have a next element and its value, and the next state in the recursive call.
Processes a sequence into a series of subsequences representing a windowed subset of the original
Processes a sequence into a series of subsequences representing a windowed subset of the original
This method was removed and has been superseded by Window instead.
Creates a left-aligned sliding window over the source sequence of a given size.
Creates a right-aligned sliding window over the source sequence of a given size.
Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences. The resulting sequence will always be as long as the longest of input sequences where the default value of each of the shorter sequence element types is used for padding.
This method has 3 overloads.
Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences. The resulting sequence is as short as the shortest input sequence.
This method has 3 overloads.
THESE METHODS ARE EXPERIMENTAL. THEY MAY BE UNSTABLE AND UNTESTED. THEY MAY BE REMOVED FROM A FUTURE MAJOR OR MINOR RELEASE AND POSSIBLY WITHOUT NOTICE. USE THEM AT YOUR OWN RISK. THE METHODS ARE PUBLISHED FOR FIELD EXPERIMENTATION TO SOLICIT FEEDBACK ON THEIR UTILITY AND DESIGN/IMPLEMENTATION DEFECTS.
Use of experimental methods requires importing the MoreLinq.Experimental
namespace.
Applies multiple accumulator queries sequentially in a single pass over a sequence.
This method has 8 overloads.
Creates a sequence query that streams the result of each task in the source sequence as it completes asynchronously.
This method has 2 overloads.
Awaits completion of all asynchronous evaluations irrespective of whether they succeed or fail. An additional argument specifies a function that projects the final result given the source item and completed task.
Creates a sequence that lazily caches the source as it is iterated for the first time, reusing the cache thereafter for future re-iterations. If the source is already cached or buffered then it is returned verbatim.
Concurrently merges all the elements of multiple asynchronous streams into a single asynchronous stream. An overload with an additional parameter specifies the maximum concurrent operations that may be in flight at any give time.
This method has 2 overloads.
Returns the only element of a sequence that has just one element. If the sequence has zero or multiple elements, then returns a user-defined value that indicates the cardinality of the result sequence.
This method has 2 overloads.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 is compatible. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on morelinq:
| Package | Downloads |
|---|---|
|
SheshaMobile.Core
Common application functionality and features to be shared across the framework |
|
|
ClosedXML.Report
ClosedXML.Report is a tool for report generation and data analysis in .NET applications through the use of Microsoft Excel. ClosedXML.Report is a .NET-library for report generation Microsoft Excel without requiring Excel to be installed on the machine that's running the code. |
|
|
Lykke.Common
Lykke common tools and utilities |
|
|
SheshaMobile.Modules.Facilities
The facilities module contains common functionality for browsing and viewing facilities |
|
|
SheshaMobile.Modules.Libraries
The libraries module contains functionality for viewing and interacting with archived information |
Showing the top 20 popular GitHub repositories that depend on morelinq:
| Repository | Stars |
|---|---|
|
bchavez/Bogus
:card_index: A simple fake data generator for C#, F#, and VB.NET. Based on and ported from the famed faker.js.
|
|
|
ClosedXML/ClosedXML
ClosedXML is a .NET library for reading, manipulating and writing Excel 2007+ (.xlsx, .xlsm) files. It aims to provide an intuitive and user-friendly interface to dealing with the underlying OpenXML API.
|
|
|
dotnet/Silk.NET
The high-speed OpenGL, OpenCL, OpenAL, OpenXR, GLFW, SDL, Vulkan, Assimp, WebGPU, and DirectX bindings library your mother warned you about.
|
|
|
shaked6540/YoutubePlaylistDownloader
A tool to download whole playlists, channels or single videos from youtube and also optionally convert them to almost any format you would like
|
|
|
bkaankose/Wino-Mail
Built-in Mail & Calendars app clone for Windows.
|
|
|
WebVella/WebVella-ERP
Free and open-source pluggable ERP and CRM software based on ASP.NET Core 9, RazorPages and PostgreSQL . Targets Linux or Windows as host OS.
|
|
|
AvillaDaniel/AvillaForensics
Avilla Forensics FREE
|
|
|
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
|
|
|
Wouterdek/NodeNetwork
A C# library with a WPF node editor component based on ReactiveUI
|
|
|
Quaver/Quaver
The ultimate community-driven, and open-source competitive rhythm game available on Steam.
|
|
|
revoframework/Revo
Event Sourcing, CQRS and DDD framework for C#/.NET Core.
|
|
|
PoESkillTree/PoESkillTree
A Passive Skill Tree Planner for Path of Exile
|
|
|
Lunat1q/Catchem-PoGo
Project is DEAD, Discord server: https://discord.me/Catchem
|
|
|
ClosedXML/ClosedXML.Report
ClosedXML.Report is a tool for report generation with which you can easily export any data from your .NET classes to Excel using a XLSX-template.
|
|
|
ericsink/SQLitePCL.raw
A Portable Class Library (PCL) for low-level (raw) access to SQLite
|
|
|
microsoft/component-detection
Scans your project to determine what components you use
|
|
|
sunnamed434/BitMono
Obfuscator for .NET and Mono, with a customizable engine for building your own obfuscators.
|
|
|
Dynatrace/superdump
A service for automated crash-dump analysis
|
|
|
Zarbuz/FileToVox
Tool for convert files into Magicavoxel file
|
|
|
Drutol/MALClient
Not so small client app for Myanimelist.net - Windows 10 UWP & Android
|
| Version | Downloads | Last Updated |
|---|---|---|
| 4.4.0 | 11,113,759 | 12/31/2024 |
| 4.3.0 | 6,030,641 | 7/7/2024 |
| 4.2.0 | 3,937,360 | 4/1/2024 |
| 4.1.0 | 5,745,395 | 11/27/2023 |
| 4.0.0 | 836,670 | 10/29/2023 |
| 3.4.2 | 8,871,194 | 4/2/2023 |
| 3.4.1 | 1,846,088 | 3/9/2023 |
| 3.4.0 | 398,892 | 2/28/2023 |
| 3.3.2 | 50,481,224 | 12/27/2019 |
| 3.3.1 | 329,689 | 12/13/2019 |
| 3.2.0 | 5,114,278 | 7/17/2019 |
| 3.1.1 | 2,794,569 | 4/5/2019 |
| 3.1.0 | 3,838,839 | 12/21/2018 |
| 3.0.0 | 3,536,445 | 6/29/2018 |
| 3.0.0-beta-2 | 7,263 | 5/17/2018 |
| 3.0.0-beta-1 | 13,845 | 4/10/2018 |
| 2.10.0 | 3,161,301 | 1/23/2018 |
| 2.9.0 | 803,983 | 12/22/2017 |
| 2.8.0 | 3,565,032 | 9/30/2017 |