trait SpecExtend<I: IntoIterator> {
    // Required method
    fn spec_extend(&mut self, iter: I);
}
Expand description

An intermediate trait for specialization of Extend.

Required Methods§

source

fn spec_extend(&mut self, iter: I)

Extends self with the contents of the given iterator.

Implementors§