| 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 | |
| org.eclipse.collections.api.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set. |
| org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableByteSet |
ImmutableByteBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableByteSet |
ImmutableByteSetFactory.empty() |
ImmutableByteSet |
ImmutableByteSetFactory.of()
Same as
ImmutableByteSetFactory.empty(). |
ImmutableByteSet |
ImmutableByteSetFactory.of(byte... items)
Same as
ImmutableByteSetFactory.with(byte[]). |
ImmutableByteSet |
ImmutableByteSetFactory.of(byte one)
Same as
ImmutableByteSetFactory.with(byte). |
ImmutableByteSet |
ImmutableByteSetFactory.ofAll(ByteIterable items)
|
ImmutableByteSet |
ImmutableByteSetFactory.ofAll(Iterable<Byte> iterable)
|
ImmutableByteSet |
ImmutableByteSetFactory.with()
Same as
ImmutableByteSetFactory.empty(). |
ImmutableByteSet |
ImmutableByteSetFactory.with(byte... items) |
ImmutableByteSet |
ImmutableByteSetFactory.with(byte one) |
ImmutableByteSet |
ImmutableByteSetFactory.withAll(ByteIterable items) |
ImmutableByteSet |
ImmutableByteSetFactory.withAll(Iterable<Byte> iterable) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableByteSet |
ImmutableSet.collectByte(ByteFunction<? super T> byteFunction) |
| Modifier and Type | Method and Description |
|---|---|
default ImmutableByteSet |
ImmutableByteSet.difference(ByteSet set)
Returns the set of all members of
this that are not members of set. |
default ImmutableByteSet |
ImmutableByteSet.intersect(ByteSet set)
Returns the set of all objects that are members of both
this and set. |
ImmutableByteSet |
ImmutableByteSet.newWith(byte element) |
ImmutableByteSet |
ImmutableByteSet.newWithAll(ByteIterable elements) |
ImmutableByteSet |
ImmutableByteSet.newWithout(byte element) |
ImmutableByteSet |
ImmutableByteSet.newWithoutAll(ByteIterable elements) |
ImmutableByteSet |
ImmutableByteSet.reject(BytePredicate predicate) |
ImmutableByteSet |
ImmutableByteSet.select(BytePredicate predicate) |
default ImmutableByteSet |
ImmutableByteSet.symmetricDifference(ByteSet set)
Returns the set of all objects that are a member of exactly one of
this and set (elements which
are in one of the sets, but not in both). |
default ImmutableByteSet |
ImmutableByteSet.tap(ByteProcedure procedure) |
ImmutableByteSet |
ByteSet.toImmutable()
Returns an immutable copy of this set.
|
ImmutableByteSet |
MutableByteSet.toImmutable()
Returns an immutable copy of this set.
|
default ImmutableByteSet |
ImmutableByteSet.union(ByteSet set) |
Copyright © 2004–2021. All rights reserved.