0.1.3
Fallible now includes a Void
type that can be used to return void from a method. It does not have an accessible constructor and can only be created by using the Fallible.Return
property.
public Fallible<Void> DoSomething()
{
// Do something
if (somethingFailed) return new Error("Something went wrong");
return Fallible.Return;
}