arraymap

Crates.ioarraymap
lib.rsarraymap
version0.1.1
sourcesrc
created_at2016-04-29 17:04:39.39597
updated_at2018-04-14 13:28:22.314496
descriptionAdds a trait to map functions over arrays
homepage
repository
max_upload_size
id4907
size3,899
(llogiq)

documentation

README

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

Commit count: 0

cargo fmt