ndcopy
Fast N-dimensional array memcpy.
Speed is achieved by copying slices row-by-row. Rust code is much faster at copying slices than trying to index N-dimensional coordinates for every value index.
Example Code
use ;
use copy3;
type SrcShape = ;
type DstShape = ;
let src = ;
let mut dst = ;
let copy_shape = ;
let src_min = ;
let dst_min = ;
copy3;
License: MIT OR Apache-2.0