Uses of Interface
org.eclipse.collections.api.set.primitive.MutableLongSet
Packages that use MutableLongSet
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains factory API for creating primitive set instances.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains interfaces for set API which enhance the performance and functionality of
Set.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 MutableLongSetModifier and TypeMethodDescriptionLongIterable.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 MutableLongSetModifier and TypeMethodDescriptionMutableLongBag.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 MutableLongSetModifier and TypeMethodDescriptionMutableLongSetFactory.empty()MutableLongSetFactory.of()Same asMutableLongSetFactory.empty().MutableLongSetFactory.of(long... items) Same asMutableLongSetFactory.with(long[]).MutableLongSetFactory.ofAll(LongStream items) MutableLongSetFactory.ofAll(LongIterable items) MutableLongSetFactory.with()Same asMutableLongSetFactory.empty().MutableLongSetFactory.with(long... items) MutableLongSetFactory.withAll(LongStream items) MutableLongSetFactory.withAll(LongIterable items) default MutableLongSetMutableLongSetFactory.withInitialCapacity(int capacity) Same asMutableLongSetFactory.empty(). but takes in an initial capacity -
Uses of MutableLongSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableLongSetModifier and TypeMethodDescriptionLongBooleanMap.keySet()Returns a set containing all the keys in this map.LongByteMap.keySet()Returns a set containing all the keys in this map.LongCharMap.keySet()Returns a set containing all the keys in this map.LongDoubleMap.keySet()Returns a set containing all the keys in this map.LongFloatMap.keySet()Returns a set containing all the keys in this map.LongIntMap.keySet()Returns a set containing all the keys in this map.LongLongMap.keySet()Returns a set containing all the keys in this map.LongObjectMap.keySet()Returns a set containing all the keys in this map.LongShortMap.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 MutableLongSetModifier and TypeMethodDescriptiondefault 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 MutableLongSetModifier and TypeMethodDescriptionMutableLongSet.asSynchronized()MutableLongSet.asUnmodifiable()default MutableLongSetMutableLongSet.difference(LongSet set) Returns the set of all members ofthisthat are not members ofset.default MutableLongSetReturns the set of all objects that are members of boththisandset.default MutableLongSetMutableLongSet.newEmpty()Creates a new empty mutable version of the same Set type.MutableLongSet.reject(LongPredicate predicate) MutableLongSet.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.with(long element) MutableLongSet.withAll(LongIterable elements) MutableLongSet.without(long element) MutableLongSet.withoutAll(LongIterable elements)