Trait list_fn::Take

source ·
pub trait Take: ListFn {
    // Provided method
    fn take(self, count: usize) -> TakeList<Self> { ... }
}

Provided Methods§

source

fn take(self, count: usize) -> TakeList<Self>

Implementors§

source§

impl<L: ListFn> Take for L