BitzArt.LinqExtensions 2.1.1

Prefix Reserved
dotnet add package BitzArt.LinqExtensions --version 2.1.1
                    
NuGet\Install-Package BitzArt.LinqExtensions -Version 2.1.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BitzArt.LinqExtensions" Version="2.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BitzArt.LinqExtensions" Version="2.1.1" />
                    
Directory.Packages.props
<PackageReference Include="BitzArt.LinqExtensions" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add BitzArt.LinqExtensions --version 2.1.1
                    
#r "nuget: BitzArt.LinqExtensions, 2.1.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=BitzArt.LinqExtensions&version=2.1.1
                    
Install BitzArt.LinqExtensions as a Cake Addin
#tool nuget:?package=BitzArt.LinqExtensions&version=2.1.1
                    
Install BitzArt.LinqExtensions as a Cake Tool

NuGet version NuGet downloads

Overview

BitzArt.LinqExtensions provides additional LINQ extension methods, such as:

  • .If() - Conditionally applies a transformation to a sequence;

    • Example:
      public void Example(bool onlyEvenNumbers)
      {
          var numbers = Enumerable.Range(1, 10);
      
          var result = numbers
              .If(onlyEvenNumbers, q => q
                  .Where(x => x % 2 == 0));
      }
      
  • .WhereIf() - Similar to .If(), but applies a condition to a sequence right away;

    • Example:
      public void Example(bool onlyEvenNumbers)
      {
          var numbers = Enumerable.Range(1, 10);
      
          var result = numbers.WhereIf(onlyEvenNumbers, x => x % 2 == 0);
      }
      
  • .Median() - Calculates the median value of a sequence;

    • Example:
      public void Example()
      {
          var numbers = Enumerable.Range(1, 10);
      
          var median = numbers.Median(x => x);
      }
      
  • .OrderBy() - Additional ordering extensions.

    • Comes with an OrderDirection enum, allowing usage like:
      public void Example(OrderDirection direction)
      {
          var numbers = Enumerable.Range(1, 10);
      
          // will order either ascending or descending, depending on the `direction` parameter
          var result = numbers.OrderBy(x => x, direction);
      }
      
  • .Shuffle() - Randomly shuffles a sequence using Fisher-Yates shuffle. Allows for a predefined randomizer seed for deterministic results.

  • And others.

More packages

more.jpg

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on BitzArt.LinqExtensions:

Package Downloads
BitzArt.CA.Core

Clean Architecture boilerplate. Core library

BitzArt.Flux

A universal WebApi client

BitzArt.LinqExtensions.Batching

Batch LINQ Extensions

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.1 225 3/18/2025
2.1.0 141 3/17/2025
2.0.2 157 3/12/2025
2.0.1 139 3/12/2025
2.0.0 141 3/12/2025
1.9.0 148 3/11/2025
1.8.1 210 3/5/2025
1.8.0 352 2/27/2025
1.7.1 106 2/27/2025
1.7.0 2,305 10/23/2024
1.6.0 852 8/29/2024
1.5.5 3,298 7/18/2024
1.5.4 152 7/18/2024
1.5.3 904 7/2/2024
1.5.2 684 5/3/2024
1.5.1 341 4/16/2024
1.5.0 197 4/16/2024
1.4.0 704 4/2/2024
1.3.0 1,322 2/29/2024
1.2.0 1,011 11/6/2023
1.1.2 3,053 3/8/2023