arraymap 0.1.1

Adds a trait to map functions over arrays
Documentation
  • Coverage
  • 33.33%
    1 out of 3 items documented1 out of 2 items with examples
  • Size
  • Source code size: 3.52 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.52 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • llogiq

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