[][src]Trait pear::parsers::Collection

pub trait Collection {
    type Item;
    fn new() -> Self;
fn add(&mut self, item: Self::Item); }

Associated Types

Loading content...

Required methods

Loading content...

Implementations on Foreign Types

impl<T> Collection for Vec<T>
[src]

impl<K: Eq + Hash, V> Collection for HashMap<K, V>
[src]

impl<K: Ord, V> Collection for BTreeMap<K, V>
[src]

Loading content...

Implementors

Loading content...