Uses of Interface
org.eclipse.collections.api.set.primitive.ImmutableLongSet
-
Packages that use ImmutableLongSet Package Description 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.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 ImmutableLongSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableLongSet Modifier and Type Method Description ImmutableLongSetImmutableLongBag. selectUnique()Returns all elements of the bag that have exactly one occurrence. -
Uses of ImmutableLongSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return ImmutableLongSet Modifier and Type Method Description ImmutableLongSetImmutableLongSetFactory. empty()ImmutableLongSetImmutableLongSetFactory. of()Same asImmutableLongSetFactory.empty().ImmutableLongSetImmutableLongSetFactory. of(long one)Same asImmutableLongSetFactory.with(long).ImmutableLongSetImmutableLongSetFactory. of(long... items)Same asImmutableLongSetFactory.with(long[]).ImmutableLongSetImmutableLongSetFactory. ofAll(Iterable<Long> iterable)ImmutableLongSetImmutableLongSetFactory. ofAll(LongStream items)ImmutableLongSetImmutableLongSetFactory. ofAll(LongIterable items)ImmutableLongSetImmutableLongSetFactory. with()Same asImmutableLongSetFactory.empty().ImmutableLongSetImmutableLongSetFactory. with(long one)ImmutableLongSetImmutableLongSetFactory. with(long... items)ImmutableLongSetImmutableLongSetFactory. withAll(Iterable<Long> iterable)ImmutableLongSetImmutableLongSetFactory. withAll(LongStream items)ImmutableLongSetImmutableLongSetFactory. withAll(LongIterable items) -
Uses of ImmutableLongSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return ImmutableLongSet Modifier and Type Method Description ImmutableLongSetImmutableSet. collectLong(LongFunction<? super T> longFunction) -
Uses of ImmutableLongSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return ImmutableLongSet Modifier and Type Method Description default ImmutableLongSetImmutableLongSet. difference(LongSet set)Returns the set of all members ofthisthat are not members ofset.default ImmutableLongSetImmutableLongSet. intersect(LongSet set)Returns the set of all objects that are members of boththisandset.ImmutableLongSetImmutableLongSet. newWith(long element)ImmutableLongSetImmutableLongSet. newWithAll(LongIterable elements)ImmutableLongSetImmutableLongSet. newWithout(long element)ImmutableLongSetImmutableLongSet. newWithoutAll(LongIterable elements)ImmutableLongSetImmutableLongSet. reject(LongPredicate predicate)ImmutableLongSetImmutableLongSet. select(LongPredicate predicate)default ImmutableLongSetImmutableLongSet. 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 ImmutableLongSetImmutableLongSet. tap(LongProcedure procedure)ImmutableLongSetLongSet. toImmutable()Returns an immutable copy of this set.ImmutableLongSetMutableLongSet. toImmutable()Returns an immutable copy of this set.default ImmutableLongSetImmutableLongSet. union(LongSet set)
-