pub trait AltListData: AltrepLen {
// Required method
fn elt(&self, i: usize) -> SEXP;
}Expand description
Trait for types that can back an ALTLIST vector.
List elements are arbitrary SEXPs, so this trait works with raw SEXP.
pub trait AltListData: AltrepLen {
// Required method
fn elt(&self, i: usize) -> SEXP;
}Trait for types that can back an ALTLIST vector.
List elements are arbitrary SEXPs, so this trait works with raw SEXP.