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