tango.util.collection.impl.BagCollection

class BagCollection(V) : Collection!(V), Bag!(V) #
MutableBagImpl extends MutableImpl to provide default implementations of some Bag operations.

Author:

Doug Lea @version 0.93

For an introduction to this package see Overview .

this() [protected] #
Initialize at version 0, an empty count, and null screener
this(Predicate screener) [protected] #
Initialize at version 0, an empty count, and supplied screener
void add(Iterator!(V) e) [public, final] #
Implements tango.util.collection.MutableBag.addElements

See Also:

tango.util.collection.MutableBag.addElements
void removeAll(Iterator!(V) e) [public] #
Implements tango.util.collection.impl.Collection.Collection.removeAll

See Also:

tango.util.collection.impl.Collection.Collection.removeAll

Has to be here rather than in the superclass to satisfy D interface idioms

void remove(Iterator!(V) e) [public] #
Implements tango.util.collection.impl.Collection.Collection.removeElements

See Also:

tango.util.collection.impl.Collection.Collection.removeElements

Has to be here rather than in the superclass to satisfy D interface idioms