| 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 |
|---|---|
ShortSet |
ShortBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
ShortSet |
UnsortedSetIterable.collectShort(ShortFunction<? super T> shortFunction) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableShortSet
This file was automatically generated from template file immutablePrimitiveSet.stg.
|
interface |
MutableShortSet
This file was automatically generated from template file mutablePrimitiveSet.stg.
|
| Modifier and Type | Method and Description |
|---|---|
ShortSet |
ShortSet.difference(ShortSet set)
Returns the set of all members of
this that are not members of set. |
ShortSet |
ShortSet.freeze()
Returns a frozen copy of this set.
|
ShortSet |
MutableShortSet.freeze()
Returns a frozen copy of this set.
|
ShortSet |
ShortSet.intersect(ShortSet set)
Returns the set of all objects that are members of both
this and set. |
ShortSet |
ShortSet.reject(ShortPredicate predicate) |
ShortSet |
ShortSet.select(ShortPredicate predicate) |
ShortSet |
ShortSet.symmetricDifference(ShortSet 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 ShortSet |
ShortSet.tap(ShortProcedure procedure) |
ShortSet |
ShortSet.union(ShortSet set) |
| Modifier and Type | Method and Description |
|---|---|
LazyIterable<ShortShortPair> |
ShortSet.cartesianProduct(ShortSet 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. |
ShortSet |
ShortSet.difference(ShortSet set)
Returns the set of all members of
this that are not members of set. |
default MutableShortSet |
MutableShortSet.difference(ShortSet set)
Returns the set of all members of
this that are not members of set. |
default ImmutableShortSet |
ImmutableShortSet.difference(ShortSet set)
Returns the set of all members of
this that are not members of set. |
ShortSet |
ShortSet.intersect(ShortSet set)
Returns the set of all objects that are members of both
this and set. |
default MutableShortSet |
MutableShortSet.intersect(ShortSet set)
Returns the set of all objects that are members of both
this and set. |
default ImmutableShortSet |
ImmutableShortSet.intersect(ShortSet set)
Returns the set of all objects that are members of both
this and set. |
default boolean |
ShortSet.isProperSubsetOf(ShortSet set)
Returns true if all the members of
this are also members of set and the
two sets are not equal. |
default boolean |
ShortSet.isSubsetOf(ShortSet set)
Returns true if all the members of
this are also members of set. |
ShortSet |
ShortSet.symmetricDifference(ShortSet 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 MutableShortSet |
MutableShortSet.symmetricDifference(ShortSet 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 ImmutableShortSet |
ImmutableShortSet.symmetricDifference(ShortSet 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). |
ShortSet |
ShortSet.union(ShortSet set) |
default MutableShortSet |
MutableShortSet.union(ShortSet set) |
default ImmutableShortSet |
ImmutableShortSet.union(ShortSet set) |
Copyright © 2004–2022. All rights reserved.