pub trait RandomAccessByRef<const NDIM: usize>: UnsafeRandomAccessByRef<NDIM> {
// Required method
fn get(&self, multi_index: [usize; NDIM]) -> Option<&Self::Item>;
}
Expand description
This trait provides bounds checked access to the underlying data by reference.