Uses of Interface
org.eclipse.collections.api.set.primitive.ImmutableByteSet
Packages that use ImmutableByteSet
Package
Description
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 interfaces for set API which enhance the performance and functionality of
Set.This package contains API for mutable and immutable primitive sets.
-
Uses of ImmutableByteSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableByteSetModifier and TypeMethodDescriptionImmutableByteBag.selectUnique()Returns all elements of the bag that have exactly one occurrence. -
Uses of ImmutableByteSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return ImmutableByteSetModifier and TypeMethodDescriptionImmutableByteSetFactory.empty()ImmutableByteSetFactory.of()Same asImmutableByteSetFactory.empty().ImmutableByteSetFactory.of(byte one) Same asImmutableByteSetFactory.with(byte).ImmutableByteSetFactory.of(byte... items) Same asImmutableByteSetFactory.with(byte[]).ImmutableByteSetFactory.ofAll(ByteIterable items) ImmutableByteSetFactory.with()Same asImmutableByteSetFactory.empty().ImmutableByteSetFactory.with(byte one) ImmutableByteSetFactory.with(byte... items) ImmutableByteSetFactory.withAll(ByteIterable items) -
Uses of ImmutableByteSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return ImmutableByteSet -
Uses of ImmutableByteSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return ImmutableByteSetModifier and TypeMethodDescriptiondefault ImmutableByteSetImmutableByteSet.difference(ByteSet set) Returns the set of all members ofthisthat are not members ofset.default ImmutableByteSetReturns the set of all objects that are members of boththisandset.ImmutableByteSet.newWith(byte element) ImmutableByteSet.newWithAll(ByteIterable elements) ImmutableByteSet.newWithout(byte element) ImmutableByteSet.newWithoutAll(ByteIterable elements) ImmutableByteSet.reject(BytePredicate predicate) ImmutableByteSet.select(BytePredicate predicate) default ImmutableByteSetImmutableByteSet.symmetricDifference(ByteSet 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 ImmutableByteSetImmutableByteSet.tap(ByteProcedure procedure) ByteSet.toImmutable()Returns an immutable copy of this set.MutableByteSet.toImmutable()Returns an immutable copy of this set.default ImmutableByteSet