| Package | Description |
|---|---|
| org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
| 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 |
|---|---|
ByteSet |
ByteBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
ByteSet |
UnsortedSetIterable.collectByte(ByteFunction<? super T> byteFunction) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableByteSet
This file was automatically generated from template file immutablePrimitiveSet.stg.
|
interface |
MutableByteSet
This file was automatically generated from template file mutablePrimitiveSet.stg.
|
| Modifier and Type | Method and Description |
|---|---|
ByteSet |
ByteSet.difference(ByteSet set)
Returns the set of all members of
this that are not members of set. |
ByteSet |
ByteSet.freeze()
Returns a frozen copy of this set.
|
ByteSet |
MutableByteSet.freeze()
Returns a frozen copy of this set.
|
ByteSet |
ByteSet.intersect(ByteSet set)
Returns the set of all objects that are members of both
this and set. |
ByteSet |
ByteSet.reject(BytePredicate predicate) |
ByteSet |
ByteSet.select(BytePredicate predicate) |
ByteSet |
ByteSet.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 ByteSet |
ByteSet.tap(ByteProcedure procedure) |
ByteSet |
ByteSet.union(ByteSet set) |
| Modifier and Type | Method and Description |
|---|---|
LazyIterable<ByteBytePair> |
ByteSet.cartesianProduct(ByteSet set)
Returns the set whose members are all possible ordered pairs (a, b) where a is a member of
this and b is a
member of set. |
ByteSet |
ByteSet.difference(ByteSet set)
Returns the set of all members of
this that are not members of set. |
default MutableByteSet |
MutableByteSet.difference(ByteSet set)
Returns the set of all members of
this that are not members of set. |
default ImmutableByteSet |
ImmutableByteSet.difference(ByteSet set)
Returns the set of all members of
this that are not members of set. |
ByteSet |
ByteSet.intersect(ByteSet set)
Returns the set of all objects that are members of both
this and set. |
default MutableByteSet |
MutableByteSet.intersect(ByteSet set)
Returns the set of all objects that are members of both
this and set. |
default ImmutableByteSet |
ImmutableByteSet.intersect(ByteSet set)
Returns the set of all objects that are members of both
this and set. |
default boolean |
ByteSet.isProperSubsetOf(ByteSet set)
Returns true if all the members of
this are also members of set and the
two sets are not equal. |
default boolean |
ByteSet.isSubsetOf(ByteSet set)
Returns true if all the members of
this are also members of set. |
ByteSet |
ByteSet.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 MutableByteSet |
MutableByteSet.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.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). |
ByteSet |
ByteSet.union(ByteSet set) |
default MutableByteSet |
MutableByteSet.union(ByteSet set) |
default ImmutableByteSet |
ImmutableByteSet.union(ByteSet set) |
Copyright © 2004–2023. All rights reserved.