| 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 |
|---|---|
ImmutableShortSet |
ImmutableShortBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableShortSet |
ImmutableShortSetFactory.empty() |
ImmutableShortSet |
ImmutableShortSetFactory.of()
Same as
ImmutableShortSetFactory.empty(). |
ImmutableShortSet |
ImmutableShortSetFactory.of(short... items)
|
ImmutableShortSet |
ImmutableShortSetFactory.of(short one)
Same as
ImmutableShortSetFactory.with(short). |
ImmutableShortSet |
ImmutableShortSetFactory.ofAll(Iterable<Short> iterable)
|
ImmutableShortSet |
ImmutableShortSetFactory.ofAll(ShortIterable items)
|
ImmutableShortSet |
ImmutableShortSetFactory.with()
Same as
ImmutableShortSetFactory.empty(). |
ImmutableShortSet |
ImmutableShortSetFactory.with(short... items) |
ImmutableShortSet |
ImmutableShortSetFactory.with(short one) |
ImmutableShortSet |
ImmutableShortSetFactory.withAll(Iterable<Short> iterable) |
ImmutableShortSet |
ImmutableShortSetFactory.withAll(ShortIterable items) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableShortSet |
ImmutableSet.collectShort(ShortFunction<? super T> shortFunction) |
| Modifier and Type | Method and Description |
|---|---|
default ImmutableShortSet |
ImmutableShortSet.intersect(ShortSet set)
Returns the set of all objects that are members of both
this and set. |
ImmutableShortSet |
ImmutableShortSet.newWith(short element) |
ImmutableShortSet |
ImmutableShortSet.newWithAll(ShortIterable elements) |
ImmutableShortSet |
ImmutableShortSet.newWithout(short element) |
ImmutableShortSet |
ImmutableShortSet.newWithoutAll(ShortIterable elements) |
ImmutableShortSet |
ImmutableShortSet.reject(ShortPredicate predicate) |
ImmutableShortSet |
ImmutableShortSet.select(ShortPredicate predicate) |
default ImmutableShortSet |
ImmutableShortSet.tap(ShortProcedure procedure) |
ImmutableShortSet |
ShortSet.toImmutable()
Returns an immutable copy of this set.
|
ImmutableShortSet |
MutableShortSet.toImmutable()
Returns an immutable copy of this set.
|
default ImmutableShortSet |
ImmutableShortSet.union(ShortSet set) |
Copyright © 2004–2020. All rights reserved.