Pipe4Net 1.1.4
See the version list below for details.
dotnet add package Pipe4Net --version 1.1.4
NuGet\Install-Package Pipe4Net -Version 1.1.4
<PackageReference Include="Pipe4Net" Version="1.1.4" />
paket add Pipe4Net --version 1.1.4
#r "nuget: Pipe4Net, 1.1.4"
// Install Pipe4Net as a Cake Addin #addin nuget:?package=Pipe4Net&version=1.1.4 // Install Pipe4Net as a Cake Tool #tool nuget:?package=Pipe4Net&version=1.1.4
Pipe.Net
Inspired by PowerShell, two extension methods that will simplify your code, Pipe and PipeWith
Package manager: Install-Package Pipe4Net
.NET CLI: dotnet add package Pipe4Net
var result = IncrementA(IncrementB(IncrementC(1)))
becomes
var pipedResult2 = IncrementC(1).Pipe(IncrementB).Pipe(IncrementA);
You will find another goodie in there , an Option<T> monad in case you need it.
The code is pretty simple, i encourage you to play and extend it by your own needs
public static class PipeIt
{
public static void PipeWith<T>(this T obj, Action<T> action) => action(obj);
public static T Pipe<T>(this T obj, Func<T, T> func) => func(obj);
public static Option<TR> Pipe<T,TR>(this T obj, Func<T, Option<TR>> func) => func(obj);
}
This is the main reason why this package exists. Look at the other tests also they are pretty intuitive
[Fact]
public void Should_Have_Same_Result_When_Piped()
{
var result = IncrementA(IncrementB(IncrementC(1)));
var pipedResult = 1.Pipe(IncrementC).Pipe(IncrementB).Pipe(IncrementC);
Assert.Equal(result,pipedResult);
var pipedResult2 = IncrementC(1).Pipe(IncrementB).Pipe(IncrementA);
Assert.Equal(result, pipedResult2);
}
private int IncrementA(int val) => val++;
private int IncrementB(int val) => val++;
private int IncrementC(int val) => val++;
The test above perfectly represents what i want to achieve with this nuget package, i have reading code from right to left, or naming temporary variables, it just one of those things that bothers me in programming, and i think this way or writing code is more elegant:
var result = IncrementA(IncrementB(IncrementC(1))) becomes var pipedResult2 = IncrementC(1).Pipe(IncrementB).Pipe(IncrementA);
Awesome
Some extensions methods on arrays that will make your code easier to read:
- .ForEach implementation for arrays
- .DeepCopy
- .ShallowCopy
- .AreSameByValue
- .AreSameByReference
- .AreSameByValueAndIndex
- .RemoveElements
- .RemoveElement
- .AddElements
- .AddElement
- .RemoveNulls
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 | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | 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 | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.