Trait nom::lib::std::prelude::v1::rust_2018::Extend1.0.0[][src]

pub trait Extend<A> {
    pub fn extend<T>(&mut self, iter: T)
    where
        T: IntoIterator<Item = A>
; pub fn extend_one(&mut self, item: A) { ... }
pub fn extend_reserve(&mut self, additional: usize) { ... } }
[]

Extend a collection with the contents of an iterator.

Iterators produce a series of values, and collections can also be thought of as a series of values. The Extend trait bridges this gap, allowing you to extend a collection by including the contents of that iterator. When extending a collection with an already existing key, that entry is updated or, in the case of collections that permit multiple entries with equal keys, that entry is inserted.

Examples

Basic usage:

// You can extend a String with some chars:
let mut message = String::from("The first three letters are: ");

message.extend(&['a', 'b', 'c']);

assert_eq!("abc", &message[29..32]);

Implementing Extend:

// A sample collection, that's just a wrapper over Vec<T>
#[derive(Debug)]
struct MyCollection(Vec<i32>);

// Let's give it some methods so we can create one and add things
// to it.
impl MyCollection {
    fn new() -> MyCollection {
        MyCollection(Vec::new())
    }

    fn add(&mut self, elem: i32) {
        self.0.push(elem);
    }
}

// since MyCollection has a list of i32s, we implement Extend for i32
impl Extend<i32> for MyCollection {

    // This is a bit simpler with the concrete type signature: we can call
    // extend on anything which can be turned into an Iterator which gives
    // us i32s. Because we need i32s to put into MyCollection.
    fn extend<T: IntoIterator<Item=i32>>(&mut self, iter: T) {

        // The implementation is very straightforward: loop through the
        // iterator, and add() each element to ourselves.
        for elem in iter {
            self.add(elem);
        }
    }
}

let mut c = MyCollection::new();

c.add(5);
c.add(6);
c.add(7);

// let's extend our collection with three more numbers
c.extend(vec![1, 2, 3]);

// we've added these elements onto the end
assert_eq!("MyCollection([5, 6, 7, 1, 2, 3])", format!("{:?}", c));

Required methods

pub fn extend<T>(&mut self, iter: T) where
    T: IntoIterator<Item = A>, 
[src][]

Extends a collection with the contents of an iterator.

As this is the only required method for this trait, the trait-level docs contain more details.

Examples

Basic usage:

// You can extend a String with some chars:
let mut message = String::from("abc");

message.extend(['d', 'e', 'f'].iter());

assert_eq!("abcdef", &message);

Provided methods

pub fn extend_one(&mut self, item: A)[src][]

🔬 This is a nightly-only experimental API. (extend_one)

Extends a collection with exactly one element.

pub fn extend_reserve(&mut self, additional: usize)[src][]

🔬 This is a nightly-only experimental API. (extend_one)

Reserves capacity in a collection for the given number of additional elements.

The default implementation does nothing.

Implementations on Foreign Types

impl<P> Extend<P> for PathBuf where
    P: AsRef<Path>, 
[src]

impl Extend<OsString> for OsString[src]

impl<'a> Extend<&'a OsStr> for OsString[src]

impl<'a> Extend<Cow<'a, OsStr>> for OsString[src]

impl Extend<()> for ()[src]

Implementors

impl Extend<char> for String[src]

impl Extend<Box<str, Global>> for String1.45.0[src]

impl Extend<String> for String1.4.0[src]

impl<'a> Extend<&'a char> for String1.2.0[src]

impl<'a> Extend<&'a str> for String[src]

impl<'a> Extend<Cow<'a, str>> for String1.19.0[src]

impl<'a, K, V> Extend<(&'a K, &'a V)> for BTreeMap<K, V> where
    K: Ord + Copy,
    V: Copy
1.2.0[src]

impl<'a, K, V, S> Extend<(&'a K, &'a V)> for HashMap<K, V, S> where
    K: Eq + Hash + Copy,
    S: BuildHasher,
    V: Copy
1.4.0[src]

impl<'a, T> Extend<&'a T> for BTreeSet<T> where
    T: 'a + Ord + Copy
1.2.0[src]

impl<'a, T> Extend<&'a T> for BinaryHeap<T> where
    T: 'a + Ord + Copy
1.2.0[src]

impl<'a, T> Extend<&'a T> for LinkedList<T> where
    T: 'a + Copy
1.2.0[src]

impl<'a, T> Extend<&'a T> for VecDeque<T> where
    T: 'a + Copy
1.2.0[src]

impl<'a, T, A> Extend<&'a T> for Vec<T, A> where
    T: 'a + Copy,
    A: 'a + Allocator
1.2.0[src]

Extend implementation that copies elements out of references before pushing them onto the Vec.

This implementation is specialized for slice iterators, where it uses copy_from_slice to append the entire slice at once.

impl<'a, T, S> Extend<&'a T> for HashSet<T, S> where
    T: 'a + Eq + Hash + Copy,
    S: BuildHasher
1.4.0[src]

impl<A> Extend<A> for VecDeque<A>[src]

impl<K, V> Extend<(K, V)> for BTreeMap<K, V> where
    K: Ord
[src]

impl<K, V, S> Extend<(K, V)> for HashMap<K, V, S> where
    K: Eq + Hash,
    S: BuildHasher
[src]

Inserts all new key-values from the iterator and replaces values with existing keys with new values returned from the iterator.

impl<T> Extend<T> for BTreeSet<T> where
    T: Ord
[src]

impl<T> Extend<T> for BinaryHeap<T> where
    T: Ord
[src]

impl<T> Extend<T> for LinkedList<T>[src]

impl<T, A> Extend<T> for Vec<T, A> where
    A: Allocator
[src]

impl<T, S> Extend<T> for HashSet<T, S> where
    T: Eq + Hash,
    S: BuildHasher
[src]

impl<K: Key, T> Extend<(K, T)> for KeyedDenseVec<K, T>

impl<'a, K: Key, T: 'a + Copy> Extend<(K, &'a T)> for KeyedDenseVec<K, T>

impl<L, R, A> Extend<A> for Either<L, R> where
    L: Extend<A>,
    R: Extend<A>, 

impl Extend<usize> for FixedBitSet

impl<Fut: Future> Extend<Fut> for FuturesOrdered<Fut>

impl<Fut> Extend<Fut> for FuturesUnordered<Fut>

impl<St: Stream + Unpin> Extend<St> for SelectAll<St>

impl<T> Extend<T> for Arena<T>

impl Extend<Modifiers> for Modifiers

impl Extend<JoystickHats> for JoystickHats

impl Extend<MapReadFlags> for MapReadFlags

impl Extend<MapWriteFlags> for MapWriteFlags

impl Extend<MapReadWriteFlags> for MapReadWriteFlags

impl<T> Extend<T> for NonEmpty<T>

impl<K, V, S> Extend<(K, V)> for HashMap<K, V, S> where
    K: Eq + Hash,
    S: BuildHasher

impl<'a, K, V, S> Extend<(&'a K, &'a V)> for HashMap<K, V, S> where
    K: Eq + Hash + Copy,
    V: Copy,
    S: BuildHasher

impl<T, S> Extend<T> for HashSet<T, S> where
    T: Eq + Hash,
    S: BuildHasher

impl<'a, T, S> Extend<&'a T> for HashSet<T, S> where
    T: 'a + Eq + Hash + Copy,
    S: BuildHasher

impl<K, V, S> Extend<(K, V)> for IndexMap<K, V, S> where
    K: Hash + Eq,
    S: BuildHasher

impl<'a, K, V, S> Extend<(&'a K, &'a V)> for IndexMap<K, V, S> where
    K: Hash + Eq + Copy,
    V: Copy,
    S: BuildHasher

impl<T, S> Extend<T> for IndexSet<T, S> where
    T: Hash + Eq,
    S: BuildHasher

impl<'a, T, S> Extend<&'a T> for IndexSet<T, S> where
    T: Hash + Eq + Copy + 'a,
    S: BuildHasher

impl<N, R, S> Extend<N> for Matrix<N, R, Dynamic, S> where
    N: Scalar,
    R: Dim,
    S: Extend<N>, 

impl<N, S> Extend<N> for Matrix<N, Dynamic, U1, S> where
    N: Scalar,
    S: Extend<N>, 

impl<N, R, S, RV, SV> Extend<Matrix<N, RV, U1, SV>> for Matrix<N, R, Dynamic, S> where
    N: Scalar,
    R: Dim,
    S: Extend<Vector<N, RV, SV>>,
    RV: Dim,
    SV: Storage<N, RV>,
    ShapeConstraint: SameNumberOfRows<R, RV>, 

impl<N, R: Dim> Extend<N> for VecStorage<N, R, Dynamic>

impl<'a, N: 'a + Copy, R: Dim> Extend<&'a N> for VecStorage<N, R, Dynamic>

impl<N, R, RV, SV> Extend<Matrix<N, RV, U1, SV>> for VecStorage<N, R, Dynamic> where
    N: Scalar,
    R: Dim,
    RV: Dim,
    SV: Storage<N, RV>,
    ShapeConstraint: SameNumberOfRows<R, RV>, 

impl<N> Extend<N> for VecStorage<N, Dynamic, U1>

impl Extend<CollisionObjectUpdateFlags> for CollisionObjectUpdateFlags

impl Extend<HeightFieldCellStatus> for HeightFieldCellStatus

impl<N, E, Ty, Item> Extend<Item> for GraphMap<N, E, Ty> where
    Item: IntoWeightedEdge<E, NodeId = N>,
    N: NodeTrait,
    Ty: EdgeType

impl Extend<Transformations> for Transformations

impl Extend<TokenTree> for TokenStream

impl Extend<TokenStream> for TokenStream

impl Extend<RootMotionRemove> for RootMotionRemove

impl Extend<BoxFlags> for BoxFlags

impl Extend<TextureCreationFlags> for TextureCreationFlags

impl Extend<BoneFlags> for BoneFlags

impl<E: CLike> Extend<E> for EnumSet<E>

impl<'a, E: 'a + CLike + Copy> Extend<&'a E> for EnumSet<E>

impl Extend<KeyModifiers> for KeyModifiers

impl Extend<Flags> for Flags

impl Extend<Flags> for Flags

impl Extend<DriverTargetFlags> for DriverTargetFlags

impl Extend<DriverVarFlag> for DriverVarFlag

impl Extend<ArmatureDeformFlag> for ArmatureDeformFlag

impl Extend<Flag> for Flag

impl Extend<Flags> for Flags

impl Extend<BlockFlags> for BlockFlags

impl Extend<(String, Value)> for Map<String, Value>

impl<K: Key, V> Extend<(K, V)> for SecondaryMap<K, V>

impl<'a, K: Key, V: 'a + Copy> Extend<(K, &'a V)> for SecondaryMap<K, V>

impl<K, V, S> Extend<(K, V)> for SparseSecondaryMap<K, V, S> where
    K: Key,
    S: BuildHasher

impl<'a, K, V, S> Extend<(K, &'a V)> for SparseSecondaryMap<K, V, S> where
    K: Key,
    V: 'a + Copy,
    S: BuildHasher

impl<A: Array> Extend<<A as Array>::Item> for SmallVec<A>

impl<T, P> Extend<T> for Punctuated<T, P> where
    P: Default

impl<T, P> Extend<Pair<T, P>> for Punctuated<T, P>

impl Extend<Error> for Error

impl Extend<(String, Value)> for Map<String, Value>