itermaps 0.2.2

Implement commonly used combinations of `Iterator::map`
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
Implement commonly used combinations of `Iterator::map`

# Examples
```rust
# use itermaps::MapExt;
let arr = [[1, 2], [3, 4]];
let first: Vec<i32> = arr.iter().map_index(0).copied().collect();
assert_eq!(first, [1, 3]);

let arr = ["foo", "bar"];
let arr1: Vec<String> = arr.into_iter().map_to_owned().collect();
assert_eq!(arr1, arr);
```