somok 1.4.0

A microlibrary for postfix Option/Result wrapping
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Somok - postfix Result/Option wrapping

## Usage:
Add following to your cargo toml:
```toml
somok = "1.0"
```
Then use postfix wrapping as follows:
```rust
use somok::{ Somok, Either };

fn foo() -> Result<Option<Either<String, Vec<u8>>>> {
    String::from("Foobar").left().some().okay()
}
```