pub trait AltLogicalImpl: AltrepImpl {
// Required method
fn elt(&self, _index: usize) -> Rbool;
// Provided methods
fn tot_min_max_nas(&self) -> (i64, i32, i32, usize, usize) { ... }
fn get_region(&self, index: usize, data: &mut [Rbool]) -> usize { ... }
fn is_sorted(&self) -> Rbool { ... }
fn no_na(&self) -> bool { ... }
fn sum(&self, remove_nas: bool) -> Robj { ... }
}Required Methods§
Provided Methods§
fn tot_min_max_nas(&self) -> (i64, i32, i32, usize, usize)
Sourcefn get_region(&self, index: usize, data: &mut [Rbool]) -> usize
fn get_region(&self, index: usize, data: &mut [Rbool]) -> usize
Get a multiple elements from this vector.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".