- class BagCollection(V) : Collection!(V), Bag!(V) ¶#
-
MutableBagImpl extends MutableImpl to provide
default implementations of some Bag operations.
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
tango.util.collection.MutableBag.addElements
- void removeAll(Iterator!(V) e) [public] ¶#
-
Implements tango.util.collection.impl.Collection.Collection.removeAll
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
tango.util.collection.impl.Collection.Collection.removeElements
Has to be here rather than in the superclass to satisfy
D interface idioms