pub trait ArrayIndex<'a> {
// Required method
fn index_op(self) -> ArrayIndexOp<'a>;
}
Expand description
Trait for custom indexing operations.
Required Methods§
Sourcefn index_op(self) -> ArrayIndexOp<'a>
fn index_op(self) -> ArrayIndexOp<'a>
mlx
allows out of bounds indexing.