Functional.Primitives.Maybe is a lightweight library providing a functional-style Maybe<T>
struct. This struct represents an optional value that may or may not be present, offering a more expressive way to handle nullable types in a functional programming paradigm.
To include Functional.Primitives.Maybe in your project, you can install it via NuGet Package Manager:
dotnet add package Functional.Primitives.Maybe
Or use the Package Manager Console:
Install-Package Functional.Primitives.Maybe