Trait re_data_store::ArrayExt
source · pub trait ArrayExt: Array {
// Required method
fn get_child_length(&self, child_nr: usize) -> usize;
}
Required Methods§
sourcefn get_child_length(&self, child_nr: usize) -> usize
fn get_child_length(&self, child_nr: usize) -> usize
Returns the length of the child array at the given index.
- Panics if
self
is not aListArray<i32>
. - Panics if
child_nr
is out of bounds.