Flowthru 0.21.0

dotnet add package Flowthru --version 0.21.0
                    
NuGet\Install-Package Flowthru -Version 0.21.0
                    
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="Flowthru" Version="0.21.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Flowthru" Version="0.21.0" />
                    
Directory.Packages.props
<PackageReference Include="Flowthru" />
                    
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 Flowthru --version 0.21.0
                    
#r "nuget: Flowthru, 0.21.0"
                    
#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.
#:package Flowthru@0.21.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Flowthru&version=0.21.0
                    
Install as a Cake Addin
#tool nuget:?package=Flowthru&version=0.21.0
                    
Install as a Cake Tool

Flowthru.Prelude

Flowthru's FP foundations. Globally imported by every consumer via the build/Flowthru.New.Core.props file (mirrors Haskell's implicit Prelude).

Provenance

The types in this directory are inspired by and partially derived from LanguageExt v5 by Paul Louth. The upstream MIT license is preserved verbatim in LICENSE-LanguageExt.md. Source files derived from LanguageExt include an attribution header pointing to that notice.

Scope

This is not a port or fork of LanguageExt. It is a focused subset containing only the FP primitives Flowthru actively uses.

Included:

  • Eff<TRuntime, T> — capability-environment-typed effect, fails with RuntimeError
  • EffResult<T> — closed sum returned by Eff.Run
  • Has<TRuntime, TCapability> — capability constraint trait (Eff-specialised)
  • Validated<E, T> — error-accumulating applicative for pre-flight checks
  • Unit — bound type for effects with no meaningful result

Excluded (and not planned):

  • The K<F, A> higher-kinded encoding
  • Generic Functor<F> / Applicative<F> / Monad<F> typeclasses
  • Monad transformer stack (StateT, WriterT, ReaderT, RWST, …)
  • Either, Option, Try, Fin — Flowthru's RuntimeError ADT and Validated<E, T> cover these roles
  • Free monads, Pipes, Streams
  • Immutable collections (Seq, Lst, Iterable, HashMap, …)

Maintenance policy

These types are owned by Flowthru going forward. Do not chase upstream LanguageExt changes. If a behaviour or naming choice diverges from upstream, that is intentional and a Flowthru concern.

When touching files here: prefer Flowthru-internal idiom over LanguageExt fidelity. The point is not to be a faithful subset; it is to give Flowthru the FP primitives it needs without adopting a 50K-line dependency whose maintenance trajectory is uncertain.

Where the rest of the algebra lives

Some Flowthru-original types compose with the ones here but are not LanguageExt-derived and live elsewhere:

  • Flowthru.Error.RuntimeError — closed sum of runtime failure modes (the Eff failure type)
  • Flowthru.Validation.PreFlightError — closed sum of pre-flight failure modes (the Validated error accumulator's E type)

The split is deliberate: this directory contains language-level primitives; the Flowthru-specific ADTs that fill in the type parameters live with the phase they describe.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Flowthru:

Package Downloads
Flowthru.Integrations.MLNet

ML.NET integration for Flowthru - provides IDataView container adapters for machine learning pipelines

Flowthru.Extensions.ML

Pure, unoptimized UMAP implementation for Flowthru - direct port from Python reference implementation by Leland McInnes

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.21.0 0 5/24/2026
0.21.0-preview.101 0 5/24/2026
0.20.0 0 5/23/2026
0.20.0-preview.100 0 5/23/2026
0.19.0-preview.99 0 5/23/2026
0.18.5-preview.98 34 5/22/2026
0.18.4-preview.97 30 5/22/2026
0.18.3 82 5/20/2026
0.18.3-preview.95 38 5/19/2026
0.18.2 89 5/18/2026
0.18.2-preview.93 40 5/18/2026
0.18.1 89 5/15/2026
0.18.1-preview.92 42 5/14/2026
0.18.0-preview.91 42 5/14/2026
0.17.5 88 5/13/2026
0.17.5-preview.90 47 5/13/2026
0.17.4 93 5/13/2026
0.17.4-preview.85 49 5/13/2026
0.17.3 101 5/13/2026
0.17.3-preview.84 56 5/13/2026
Loading failed