Trait pointer::SizedPointer [] [src]

pub trait SizedPointer: Pointer + Sized {
    fn strideIncrement(self, strideSize: usize, index: usize) -> Self { ... }
    fn strideDecrement(self, strideSize: usize, index: usize) -> Self { ... }
}

Provided Methods

Eg if an array consists of 4 elements of size 11, to get to the start of the 2nd element use strideSize=11, index=1

Implementors