PipeEx.StructuredConcurrency 0.0.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package PipeEx.StructuredConcurrency --version 0.0.4
                    
NuGet\Install-Package PipeEx.StructuredConcurrency -Version 0.0.4
                    
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="PipeEx.StructuredConcurrency" Version="0.0.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PipeEx.StructuredConcurrency" Version="0.0.4" />
                    
Directory.Packages.props
<PackageReference Include="PipeEx.StructuredConcurrency" />
                    
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 PipeEx.StructuredConcurrency --version 0.0.4
                    
#r "nuget: PipeEx.StructuredConcurrency, 0.0.4"
                    
#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=PipeEx.StructuredConcurrency&version=0.0.4
                    
Install PipeEx.StructuredConcurrency as a Cake Addin
#tool nuget:?package=PipeEx.StructuredConcurrency&version=0.0.4
                    
Install PipeEx.StructuredConcurrency as a Cake Tool

PipeEx

.NET NuGet NuGet

PipeEx is a simple yet powerful library that provides extension methods for creating a fluent, pipe-like syntax in C#. It allows you to chain function calls together in a readable and expressive way, improving code clarity and maintainability.

What is it?

PipeEx introduces the I (Infer) extension method, which acts as a "pipe" operator. This allows you to pass the result of one function directly as input to the next, creating a chain of operations. This is particularly useful when dealing with asynchronous operations or complex data transformations.

Usage

The core of PipeEx is the I extension method.

public int Calc(int x) => x.I(FuncY)
                           .I(x => x + 2);

// automatically destructuring of tules
public int Calc(int x) => x.I(x => (x + 2, x + 4))
                           .I((x, y) => x + y);

For Structured Concurrency use: NuGet NuGet

// await is handled automatically
public Task<int> Calc(int x) => x.I(FuncXAsync)
                                 .I(x => x + 2)
                                 .I(FuncYAsync)
                                 .I(FuncY);

// Branching/TaskGroups
public Task<int> Calc(int x) => x.I((FuncXAsync, FuncYAsync().I(FuncY).I))
                                 .I((x, y) => x + y);

Features

  • Fluent Syntax: Enables a clean and readable way to chain function calls.
  • Asynchronous Support: Works seamlessly with both synchronous and asynchronous operations (Task<T>).
  • Simplified Code: Reduces nesting and improves code maintainability.
  • Lightweight: A small and focused library with minimal dependencies.

Planned:

  • Cancelation: Handles initialization and propagation of cancellation token. (StructuredTask<T>)
  • Ressources: Handles ressources that are not thread-safe like EF Core DbContext or WPF UI element upadtes

Contributing

Contributions are welcome! Feel free to submit pull requests or open issues.

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 was computed.  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.
  • net8.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.

Version Downloads Last updated
0.1.0-alpha.1 229 3/23/2025
0.0.9 129 3/17/2025
0.0.8 128 3/12/2025
0.0.7 153 3/9/2025
0.0.6 208 3/7/2025
0.0.5 193 3/6/2025
0.0.4 88 3/2/2025
0.0.3 89 2/28/2025