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>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<L: ListFn> Take for L