pub trait Extend<A> {
    fn extend<T: IntoIterator<Item = A>>(
        &mut self,
        iter: T
    ) -> impl Future<Output = ()>; }
Expand description

Extend a collection with the contents of an iterator.

Required Methods

Extends a collection with the contents of an iterator.

Implementations on Foreign Types

Implementors