#fixed-size #range #array #values #set-range

rust_array_set_range

Crate that allows to set range of values in Rust's fixed size arrays

3 releases (breaking)

0.3.0 Jun 17, 2022
0.2.0 Jun 17, 2022
0.1.0 Jun 11, 2022

#2608 in Algorithms

MIT license

3KB
66 lines

rust_array_set_range

Very simple crate that allows to do this

let mut arr = [0; 964];
let arr1 = [1; 15]
arr.set_range(0, arr);

No runtime deps