pub trait AltStringData: AltrepLen {
// Required method
fn elt(&self, i: usize) -> Option<&str>;
// Provided methods
fn is_sorted(&self) -> Option<Sortedness> { ... }
fn no_na(&self) -> Option<bool> { ... }
}Expand description
Trait for types that can back an ALTSTRING vector.
Note: elt returns a &str which will be converted to CHARSXP.
Required Methods§
Provided Methods§
Sourcefn is_sorted(&self) -> Option<Sortedness>
fn is_sorted(&self) -> Option<Sortedness>
Optional: sortedness hint.