Trait basic_dsp_vector::Resize [−][src]
A trait for storage types which are known to have the capability to increase their capacity.
Required Methods
fn resize(&mut self, len: usize)
Resize a storage type. Must work for any value of len,
however it's okay if after this method self.alloc_len() > len
or in words: It's okay if the method allocates more memory than
specified in the parameter.
Implementations on Foreign Types
impl<T> Resize for Vec<T> where
T: RealNumber, [src]
impl<T> Resize for Vec<T> where
T: RealNumber,