# try_map
**UPDATE 20th of Feb 2018**
The Rust standard library is getting this functionality with name `transpose`, so this crate is going to fade away. The tracking issue is here: https://github.com/rust-lang/rust/issues/47338
`try_map` method for `Option` and `flip` method for `Option` and `Vec`. These helper methods allow more ergonomic error handling when mapping
functions that return `Result`, over collections.
## How to use:
Add to `Cargo.toml`:
[dependencies]
try_map = "0.3"
Bring the extension traits to the scope in your code: (`FallibleMapExt` is for enabling `try_map` and `FlipResultExt` is for enabling `flip`.)
use try_map::{FallibleMapExt, FlipResultExt};
Use the `try_map` and `flip` methods like a boss!
fn try_map_example() -> Result