Trait mat::traits::UnsafeGet [] [src]

pub trait UnsafeGet: Copy {
    type Elem: Copy;
    unsafe fn unsafe_get(self, r: usize, c: usize) -> Self::Elem;
}

Unsafe indexing

Associated Types

The matrix element type

Required Methods

Returns the element at row r and column c with performing bounds checks

Implementors