This library provides iterator-like utilities for map
, fold
, for_each
, and etc., for tuple.
``` rust extern crate tuplemap; use tuplemap::*; fn main() { let (x, y) = (3, 4); let (x, y) = (x, y).map(|a| a + 5); asserteq!(x, 8); asserteq!(y, 9); }
```