arraymap 0.1.1

Adds a trait to map functions over arrays
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# arraymap

Adds a trait to map functions over arrays.

Usage:

```
use arraymap::ArrayMap;

let x = [1, 2, 3].map(|v| v + 1);
assert_eq!([2, 3, 4], x);
```

License:

Everything in this repository is subject to the MIT License