Trait GrowingWindow

Source
pub trait GrowingWindow<T> {
    // Required method
    fn growing_window(&self) -> Vec<Rc<&[T]>>;
}
Expand description

A collection of views into a generic value that covers all possible continuos sizes

Required Methods§

Source

fn growing_window(&self) -> Vec<Rc<&[T]>>

Generates all views

Implementations on Foreign Types§

Source§

impl<T> GrowingWindow<T> for Vec<T>

Implementors§