Class DoubleLongHashMap.ValuesCollection
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongValuesMap.AbstractLongValuesCollection
-
- org.eclipse.collections.impl.map.mutable.primitive.DoubleLongHashMap.ValuesCollection
-
- All Implemented Interfaces:
MutableLongCollection
,LongIterable
,PrimitiveIterable
- Enclosing class:
- DoubleLongHashMap
private class DoubleLongHashMap.ValuesCollection extends AbstractMutableLongValuesMap.AbstractLongValuesCollection
-
-
Constructor Summary
Constructors Modifier Constructor Description private
ValuesCollection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableLongIterator
longIterator()
Returns a primitive iterator that can be used to iterate over the LongIterable in an imperative style.MutableLongCollection
newEmpty()
Creates a new empty mutable version of the same collection type.boolean
remove(long item)
boolean
retainAll(LongIterable source)
-
Methods inherited from class org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongValuesMap.AbstractLongValuesCollection
add, addAll, addAll, allSatisfy, anySatisfy, appendString, appendString, appendString, asLazy, asSynchronized, asUnmodifiable, average, chunk, clear, collect, contains, containsAll, containsAll, count, detectIfNone, each, injectInto, isEmpty, makeString, makeString, makeString, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, notEmpty, reject, removeAll, removeAll, retainAll, select, size, sum, toArray, toArray, toBag, toImmutable, toList, toSet, toSortedArray, toSortedList, with, withAll, without, withoutAll
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.collections.api.LongIterable
averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, containsAny, containsAny, containsNone, containsNone, flatCollect, forEach, injectIntoBoolean, injectIntoByte, injectIntoChar, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, injectIntoShort, medianIfEmpty, reduce, reduceIfEmpty, reject, select, summaryStatistics, toSortedList, toSortedListBy, toSortedListBy
-
Methods inherited from interface org.eclipse.collections.api.collection.primitive.MutableLongCollection
removeIf, tap
-
Methods inherited from interface org.eclipse.collections.api.PrimitiveIterable
toString
-
-
-
-
Method Detail
-
longIterator
public MutableLongIterator longIterator()
Description copied from interface:LongIterable
Returns a primitive iterator that can be used to iterate over the LongIterable in an imperative style.
-
remove
public boolean remove(long item)
-
retainAll
public boolean retainAll(LongIterable source)
- See Also:
Collection.retainAll(Collection)
-
newEmpty
public MutableLongCollection newEmpty()
Description copied from interface:MutableLongCollection
Creates a new empty mutable version of the same collection type.- Since:
- 9.2.
-
-