Top 20 NuGet option Packages
Package Description
Implementation of the Option pattern (also called Maybe pattern) for the .NET platform.
For documentation and examples of use, see project website.
F# inspired functional extensions for C#
Isop is a library to help simplify and structure command line apps.
Funicular-Switch is a lightweight C# port of F# result and option types
Option types for C# with LINQ support and rich fluent syntax for many popular uses:
var maybeOne = "one".ToMaybe();
Maybe<string> maybeAnother;
var maybeBoth =
from one in maybeOne
from another in maybeAnother
select one + another;
maybeBoth.Match(
both => Console.WriteLine("...
A practical functional library for C#
A package containing an Option<T> class that functions like a Haskell Maybe type. It is meant to replace certain instances where null is normally used.
Is a library that provide missing features in C# where are fundamental in the Rust Programming Language