Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 805 Bytes

readme.md

File metadata and controls

23 lines (14 loc) · 805 Bytes

SimpleMaybe

AppVeyor NuGet

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:

  1. guarded against nulls (you cannot create Maybe.Some<string>(null)),
  2. 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.