Uses of Interface
org.eclipse.collections.api.set.primitive.MutableLongSet
-
Packages that use MutableLongSet Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.factory.set.primitive This package contains factory API for creating primitive set instances.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet.org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets. -
-
Uses of MutableLongSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableLongSet Modifier and Type Method Description MutableLongSetLongIterable. toSet()Converts the LongIterable to a new MutableLongSet. -
Uses of MutableLongSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSetMutableLongBag. selectUnique()Returns all elements of the bag that have exactly one occurrence. -
Uses of MutableLongSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSetMutableLongSetFactory. empty()MutableLongSetMutableLongSetFactory. of()Same asMutableLongSetFactory.empty().MutableLongSetMutableLongSetFactory. of(long... items)Same asMutableLongSetFactory.with(long[]).MutableLongSetMutableLongSetFactory. ofAll(Iterable<Long> iterable)MutableLongSetMutableLongSetFactory. ofAll(LongStream items)MutableLongSetMutableLongSetFactory. ofAll(LongIterable items)MutableLongSetMutableLongSetFactory. with()Same asMutableLongSetFactory.empty().MutableLongSetMutableLongSetFactory. with(long... items)MutableLongSetMutableLongSetFactory. withAll(Iterable<Long> iterable)MutableLongSetMutableLongSetFactory. withAll(LongStream items)MutableLongSetMutableLongSetFactory. withAll(LongIterable items)default MutableLongSetMutableLongSetFactory. withInitialCapacity(int capacity)Same asMutableLongSetFactory.empty(). -
Uses of MutableLongSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSetLongBooleanMap. keySet()Returns a set containing all the keys in this map.MutableLongSetLongByteMap. keySet()Returns a set containing all the keys in this map.MutableLongSetLongCharMap. keySet()Returns a set containing all the keys in this map.MutableLongSetLongDoubleMap. keySet()Returns a set containing all the keys in this map.MutableLongSetLongFloatMap. keySet()Returns a set containing all the keys in this map.MutableLongSetLongIntMap. keySet()Returns a set containing all the keys in this map.MutableLongSetLongLongMap. keySet()Returns a set containing all the keys in this map.MutableLongSetLongObjectMap. keySet()Returns a set containing all the keys in this map.MutableLongSetLongShortMap. keySet()Returns a set containing all the keys in this map. -
Uses of MutableLongSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return MutableLongSet Modifier and Type Method Description default MutableLongSetMutableSet. collectLong(LongFunction<? super T> longFunction) -
Uses of MutableLongSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSetMutableLongSet. asSynchronized()MutableLongSetMutableLongSet. asUnmodifiable()default MutableLongSetMutableLongSet. difference(LongSet set)Returns the set of all members ofthisthat are not members ofset.default MutableLongSetMutableLongSet. intersect(LongSet set)Returns the set of all objects that are members of boththisandset.default MutableLongSetMutableLongSet. newEmpty()Creates a new empty mutable version of the same Set type.MutableLongSetMutableLongSet. reject(LongPredicate predicate)MutableLongSetMutableLongSet. select(LongPredicate predicate)default MutableLongSetMutableLongSet. symmetricDifference(LongSet set)Returns the set of all objects that are a member of exactly one ofthisandset(elements which are in one of the sets, but not in both).default MutableLongSetMutableLongSet. tap(LongProcedure procedure)default MutableLongSetMutableLongSet. union(LongSet set)MutableLongSetMutableLongSet. with(long element)MutableLongSetMutableLongSet. withAll(LongIterable elements)MutableLongSetMutableLongSet. without(long element)MutableLongSetMutableLongSet. withoutAll(LongIterable elements)
-