array_range_copy 0.1.0

Crate that allows to set range of values in Rust's fixed size arrays
Documentation
  • Coverage
  • 0%
    0 out of 7 items documented0 out of 4 items with examples
  • Size
  • Source code size: 3.61 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 252.86 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • vbakc/rust_array_range_copy
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • vbakc

array_range_copy

Very simple crate that allows to do this:

let mut arr = [0; 20];
let arr1 = [1; 10];
arr.copy_array_to::<1>(arr1);