insideout 0.2.0

Wrap composed types inside-out (eg. `Result<Option<T>, E>` or `Option<Result<T,E>>`
Documentation

insideout - Wrap composed types inside-out

Turn Option<Result<O, E>> into <Result<Option<O>, E>> and the other way around. Also for Iterators and potentially other types.

Feel free to submit PR for other types where this operation makes sense.