Set slice `slice_num` in `inout` Array to a new Array `new_slice` Slices indicate that the indexing is along 3rd dimension
(inout: &mut Array<T>, new_slice: &Array<T>, slice_num: i64)
| 417 | /// |
| 418 | /// Slices indicate that the indexing is along 3rd dimension |
| 419 | pub fn set_slice<T>(inout: &mut Array<T>, new_slice: &Array<T>, slice_num: i64) |
| 420 | where |
| 421 | T: HasAfEnum, |
| 422 | { |
| 423 | let seqs = [ |
| 424 | Seq::default(), |
| 425 | Seq::default(), |
| 426 | Seq::new(slice_num as f64, slice_num as f64, 1.0), |
| 427 | ]; |
| 428 | assign_seq(inout, &seqs, new_slice) |
| 429 | } |
| 430 | |
| 431 | /// Get slices from `first` to `last` in `input` Array |
| 432 | /// |
nothing calls this directly
no test coverage detected