resultish 0.1.6

A `Resultish` represents success (`Ok`), error (`Err`), or `Both`.
Documentation
1
2
3
4
5
6
7
8
# resultish

A `Resultish` represents success (`Ok`), error (`Err`), or `Both`.
It can be converted into a `Result`:
- `lenient`ly, where `Both` is mapped to `Ok`, and the
  error value is discarded.
- `strict`ly, where `Both` is mapped to `Err`, and the
  success value is discarded.