This library is under development!
This is a C# implementation of maybe/optional type.
Installation:
PM> Install-Package SimpleMaybe
It was created because I needed maybe implementation which:
- guarded against nulls (you cannot create
Maybe.Some<string>(null)
), - had support for async.
It has no documentation at the moment, but you can check tests project to see what it can do.
Library was highly inspired by projects like nlkl/Optional or zoran-horvat/option.