ExpressionFusion 0.2.0
dotnet add package ExpressionFusion --version 0.2.0
NuGet\Install-Package ExpressionFusion -Version 0.2.0
<PackageReference Include="ExpressionFusion" Version="0.2.0" />
<PackageVersion Include="ExpressionFusion" Version="0.2.0" />
<PackageReference Include="ExpressionFusion" />
paket add ExpressionFusion --version 0.2.0
#r "nuget: ExpressionFusion, 0.2.0"
#:package ExpressionFusion@0.2.0
#addin nuget:?package=ExpressionFusion&version=0.2.0
#tool nuget:?package=ExpressionFusion&version=0.2.0
Library for partial application/combination of C# expressions.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
This package has 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.
- Add true partial application functionality -> This feature allows for users to partially apply an expression fairly simply and, due to metaprogramming, with appropriate compile-time errors and Intellisense hints.
Ex. `someExpr.Partial().Apply(3).Result` will create a new expression where the first parameter, originally an int, is replaced in the expression tree by a constant 3.