The result of a computation can either be Ok or Err
Remark
If you are familiar with functional programming you will recognize this as you
standard Either type. I've kept the implementation very basic. If you want
a richer type with a bnuch of utility functions you can easily wrap the
run function yourself.
The result of a computation can either be
OkorErrRemark
If you are familiar with functional programming you will recognize this as you standard
Eithertype. I've kept the implementation very basic. If you want a richer type with a bnuch of utility functions you can easily wrap the run function yourself.See