rust_array_set_range 0.3.0

Crate that allows to set range of values in Rust's fixed size arrays
Documentation
1
2
3
4
5
6
7
8
9
# rust_array_set_range

Very simple crate that allows to do this

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