1//! Array indexing utilities such as `sub2ind` and `ind2sub`. 2 3pub(crate) mod common; 4pub mod find; 5pub mod ind2sub; 6pub mod sub2ind;