pub trait ArrayIndex {
    fn index<T>(&self, array: &Array<T>) -> i32;
}
Expand description

A trait implemented by types that can index into an Array.

Required Methods

Calculates the index into the Array’s underlying storage specified by the value of self.

Panics

Panics if the value of self does not correspond to an in-bounds element of the Array.

Implementations on Foreign Types

Implementors