A C# library that mimics F#'s results. Since the functionality and in most cases
even the method names are directly taken from F#, go check
out the documentation there
for details.
No new features will be added or bugs fixed unless requested through an issue.
If you wish to fork this repository and continue the work, you are very welcome
to do so.
Methods for creating results are located on the Res
class. Values can also be
implicitly cast to Res
instances. Methods like Map
or Bind
are available as extension methods on Res
instances for easy
chaining.
Res
are immutable reference-types. They are compared using equality even when
using ==
.
- Ok
- Fail
- FromOp
Success and Fail results may also be implicitly cast from their containing
values like this
Res<int, string> res = 0
- IsOk
- IsFail
- Match (for functions and actions)
- Bind
- Map
- MapError
There are also async versions of
- Map
- Bind
- MapError
They are found by simply adding "Async" to the end of the method-name
There are also extension methods for Task<Res<_,_>>
such as
- MapAsyncRes
- MapAsyncResError
- BindAsyncRes
- BindAsyncResAsync