pub trait AltrepLen {
// Required method
fn len(&self) -> usize;
// Provided method
fn is_empty(&self) -> bool { ... }
}Expand description
Base trait for ALTREP data types. All ALTREP types must provide length.
pub trait AltrepLen {
// Required method
fn len(&self) -> usize;
// Provided method
fn is_empty(&self) -> bool { ... }
}Base trait for ALTREP data types. All ALTREP types must provide length.