morelinq 3.2.0
Prefix ReservedSee the version list below for details.
dotnet add package morelinq --version 3.2.0
NuGet\Install-Package morelinq -Version 3.2.0
<PackageReference Include="morelinq" Version="3.2.0" />
paket add morelinq --version 3.2.0
#r "nuget: morelinq, 3.2.0"
// Install morelinq as a Cake Addin #addin nuget:?package=morelinq&version=3.2.0 // Install morelinq as a Cake Tool #tool nuget:?package=morelinq&version=3.2.0
Usage
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. In some very rare instances, however, this 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
.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.0 is compatible. netstandard1.1 was computed. netstandard1.2 was computed. netstandard1.3 was computed. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 was computed. netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net45 was computed. net451 is compatible. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Windows Phone | wp8 was computed. wp81 was computed. wpa81 was computed. |
Windows Store | netcore was computed. netcore45 was computed. netcore451 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5.1
- System.ValueTuple (>= 4.4.0)
-
.NETStandard 1.0
- NETStandard.Library (>= 1.6.1)
- System.ValueTuple (>= 4.4.0)
-
.NETStandard 2.0
- No dependencies.
NuGet packages (284)
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 |
|
Lykke.Common
Lykke common tools and utilities |
|
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. |
|
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 |
GitHub repositories (51)
Showing the top 5 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.
|
|
YarnSpinnerTool/YarnSpinner
Yarn Spinner is a tool for building interactive dialogue in games!
|
|
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
|
Version | Downloads | Last updated |
---|---|---|
4.3.0 | 733,791 | 7/7/2024 |
4.2.0 | 1,345,669 | 4/1/2024 |
4.1.0 | 2,530,313 | 11/27/2023 |
4.0.0 | 439,030 | 10/29/2023 |
3.4.2 | 4,877,542 | 4/2/2023 |
3.4.1 | 1,229,620 | 3/9/2023 |
3.4.0 | 241,276 | 2/28/2023 |
3.3.2 | 39,482,130 | 12/27/2019 |
3.3.1 | 248,039 | 12/13/2019 |
3.2.0 | 4,310,782 | 7/17/2019 |
3.1.1 | 2,219,246 | 4/5/2019 |
3.1.0 | 3,434,777 | 12/21/2018 |
3.0.0 | 2,836,294 | 6/29/2018 |
3.0.0-beta-2 | 6,563 | 5/17/2018 |
3.0.0-beta-1 | 13,130 | 4/10/2018 |
2.10.0 | 2,477,637 | 1/23/2018 |
2.9.0 | 638,817 | 12/22/2017 |
2.8.0 | 3,290,260 | 9/30/2017 |
2.7.0 | 339,041 | 8/31/2017 |
2.7.0-rc-1 | 2,577 | 8/28/2017 |
2.7.0-beta-1 | 3,141 | 8/23/2017 |
2.6.0 | 614,816 | 6/30/2017 |
2.5.0 | 209,195 | 5/31/2017 |
2.4.1 | 116,998 | 5/1/2017 |
2.4.0 | 16,569 | 4/30/2017 |
2.4.0-beta-02 | 3,391 | 4/21/2017 |
2.4.0-beta-01 | 3,842 | 4/13/2017 |
2.3.0 | 350,038 | 3/31/2017 |
2.2.0 | 233,080 | 2/24/2017 |
2.2.0-beta-1 | 2,798 | 2/19/2017 |
2.1.0 | 283,758 | 1/31/2017 |
2.0.0 | 332,034 | 12/23/2016 |
2.0.0-beta06 | 9,559 | 11/11/2016 |
2.0.0-beta05 | 20,014 | 9/28/2016 |
2.0.0-beta04 | 74,386 | 8/5/2016 |
2.0.0-beta03 | 45,093 | 2/18/2016 |
2.0.0-beta02 | 2,981 | 2/9/2016 |
2.0.0-beta01 | 2,807 | 2/1/2016 |
2.0.0-alpha01 | 51,316 | 6/27/2013 |
1.4.0 | 1,721,258 | 10/16/2015 |
1.3.0 | 38,831 | 10/2/2015 |
1.2.0 | 29,381 | 9/16/2015 |
1.1.1 | 266,404 | 5/19/2015 |
1.1.0 | 331,808 | 8/12/2014 |
1.0.16006 | 306,657 | 5/7/2013 |
1.0.15631-beta | 3,836 | 1/31/2013 |
1.0.15416-beta | 3,255 | 11/16/2012 |
1.0.11729-beta | 2,897 | 11/9/2012 |
1.0.0 | 113,419 | 6/3/2011 |