pub trait AltComplexData: AltrepLen {
// Required method
fn elt(&self, i: usize) -> Rcomplex;
// Provided methods
fn as_slice(&self) -> Option<&[Rcomplex]> { ... }
fn get_region(
&self,
start: usize,
len: usize,
buf: &mut [Rcomplex],
) -> usize { ... }
}Expand description
Trait for types that can back an ALTCOMPLEX vector.