| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
| org.eclipse.collections.api.collection.primitive |
This package contains mutable and immutable primitive collection API.
|
| org.eclipse.collections.api.factory.bag.primitive | |
| org.eclipse.collections.api.factory.list.primitive |
This package contains factory API for creating immutable primitive list instances.
|
| org.eclipse.collections.api.factory.set.primitive |
This package contains factory API for creating primitive set instances.
|
| org.eclipse.collections.api.factory.stack.primitive |
This package contains factory API for creating primitive stack instances.
|
| org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
| org.eclipse.collections.api.map.primitive |
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
|
| org.eclipse.collections.api.ordered.primitive | |
| org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| org.eclipse.collections.api.stack.primitive |
This package contains mutable and immutable primitive stack API.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
LazyFloatIterable
This file was automatically generated from template file lazyPrimitiveIterable.stg.
|
| Modifier and Type | Method and Description |
|---|---|
FloatIterable |
RichIterable.collectFloat(FloatFunction<? super T> floatFunction)
Returns a new primitive
float iterable with the results of applying the specified function on each element
of the source collection. |
FloatIterable |
FloatIterable.reject(FloatPredicate predicate)
Returns a new FloatIterable with all of the elements in the FloatIterable that
return false for the specified predicate.
|
FloatIterable |
FloatIterable.select(FloatPredicate predicate)
Returns a new FloatIterable with all of the elements in the FloatIterable that
return true for the specified predicate.
|
default FloatIterable |
FloatIterable.tap(FloatProcedure procedure) |
| Modifier and Type | Method and Description |
|---|---|
default RichIterable<FloatIterable> |
FloatIterable.chunk(int size)
Partitions elements in fixed size chunks.
|
| Modifier and Type | Method and Description |
|---|---|
default boolean |
FloatIterable.containsAll(FloatIterable source)
Returns true if all of the values specified in the source FloatIterable are contained
in the FloatIterable, and false if they are not.
|
default boolean |
FloatIterable.containsAny(FloatIterable source)
Returns true if any of the values specified in the source FloatIterable are contained
in the FloatIterable, and false if they are not.
|
default boolean |
FloatIterable.containsNone(FloatIterable source)
Returns true if none of the values specified in the source FloatIterable are contained
in the FloatIterable, and false if they are.
|
| Modifier and Type | Method and Description |
|---|---|
default <R extends MutableFloatCollection> |
RichIterable.flatCollectFloat(Function<? super T,? extends FloatIterable> function,
R target)
Same as flatCollect, only the results are collected into the target collection.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
FloatBag
This file was automatically generated from template file primitiveBag.stg.
|
interface |
ImmutableFloatBag
This file was automatically generated from template file immutablePrimitiveBag.stg.
|
interface |
MutableFloatBag
This file was automatically generated from template file mutablePrimitiveBag.stg.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableFloatBag |
ImmutableFloatBag.newWithAll(FloatIterable elements) |
ImmutableFloatBag |
ImmutableFloatBag.newWithoutAll(FloatIterable elements) |
MutableFloatBag |
MutableFloatBag.withAll(FloatIterable elements) |
MutableFloatBag |
MutableFloatBag.withoutAll(FloatIterable elements) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableFloatCollection
This file was automatically generated from template file immutablePrimitiveCollection.stg.
|
interface |
MutableFloatCollection
This file was automatically generated from template file mutablePrimitiveCollection.stg.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
MutableFloatCollection.addAll(FloatIterable source) |
ImmutableFloatCollection |
ImmutableFloatCollection.newWithAll(FloatIterable elements) |
ImmutableFloatCollection |
ImmutableFloatCollection.newWithoutAll(FloatIterable elements) |
boolean |
MutableFloatCollection.removeAll(FloatIterable source) |
boolean |
MutableFloatCollection.retainAll(FloatIterable elements) |
MutableFloatCollection |
MutableFloatCollection.withAll(FloatIterable elements) |
MutableFloatCollection |
MutableFloatCollection.withoutAll(FloatIterable elements) |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatBag |
MutableFloatBagFactory.ofAll(FloatIterable items)
|
ImmutableFloatBag |
ImmutableFloatBagFactory.ofAll(FloatIterable items)
|
MutableFloatBag |
MutableFloatBagFactory.withAll(FloatIterable items) |
ImmutableFloatBag |
ImmutableFloatBagFactory.withAll(FloatIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatList |
MutableFloatListFactory.ofAll(FloatIterable items)
|
ImmutableFloatList |
ImmutableFloatListFactory.ofAll(FloatIterable items)
|
MutableFloatList |
MutableFloatListFactory.withAll(FloatIterable items) |
ImmutableFloatList |
ImmutableFloatListFactory.withAll(FloatIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatSet |
MutableFloatSetFactory.ofAll(FloatIterable items)
|
ImmutableFloatSet |
ImmutableFloatSetFactory.ofAll(FloatIterable items)
|
MutableFloatSet |
MutableFloatSetFactory.withAll(FloatIterable items) |
ImmutableFloatSet |
ImmutableFloatSetFactory.withAll(FloatIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatStack |
MutableFloatStackFactory.ofAll(FloatIterable items)
|
ImmutableFloatStack |
ImmutableFloatStackFactory.ofAll(FloatIterable items)
|
MutableFloatStack |
MutableFloatStackFactory.ofAllReversed(FloatIterable items)
|
ImmutableFloatStack |
ImmutableFloatStackFactory.ofAllReversed(FloatIterable items)
|
MutableFloatStack |
MutableFloatStackFactory.withAll(FloatIterable items) |
ImmutableFloatStack |
ImmutableFloatStackFactory.withAll(FloatIterable items) |
MutableFloatStack |
MutableFloatStackFactory.withAllReversed(FloatIterable items) |
ImmutableFloatStack |
ImmutableFloatStackFactory.withAllReversed(FloatIterable items) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
FloatList
This file was automatically generated from template file primitiveList.stg.
|
interface |
ImmutableFloatList
This file was automatically generated from template file immutablePrimitiveList.stg.
|
interface |
MutableFloatList
This file was automatically generated from template file mutablePrimitiveList.stg.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
MutableFloatList.addAllAtIndex(int index,
FloatIterable source) |
ImmutableFloatList |
ImmutableFloatList.newWithAll(FloatIterable elements) |
ImmutableFloatList |
ImmutableFloatList.newWithoutAll(FloatIterable elements) |
MutableFloatList |
MutableFloatList.withAll(FloatIterable elements) |
MutableFloatList |
MutableFloatList.withoutAll(FloatIterable elements) |
default ListIterable<FloatFloatPair> |
FloatList.zipFloat(FloatIterable iterable)
Returns a
ListIterable formed from this FloatList and another FloatList by
combining corresponding elements in pairs. |
default MutableList<FloatFloatPair> |
MutableFloatList.zipFloat(FloatIterable iterable)
Returns a
MutableList formed from this MutableFloatList and another FloatList by
combining corresponding elements in pairs. |
default ImmutableList<FloatFloatPair> |
ImmutableFloatList.zipFloat(FloatIterable iterable)
Returns an
ImmutableList formed from this ImmutableFloatList and another FloatList by
combining corresponding elements in pairs. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ByteFloatMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
CharFloatMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
DoubleFloatMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
FloatFloatMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
FloatValuesMap
This file was automatically generated from template file primitiveValuesMap.stg.
|
interface |
ImmutableByteFloatMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableCharFloatMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableDoubleFloatMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableFloatFloatMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableIntFloatMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableLongFloatMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableObjectFloatMap<K>
This file was automatically generated from template file immutableObjectPrimitiveMap.stg.
|
interface |
ImmutableShortFloatMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
IntFloatMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
LongFloatMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
MutableByteFloatMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableCharFloatMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableDoubleFloatMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableFloatFloatMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableFloatValuesMap
This file was automatically generated from template file mutablePrimitiveValuesMap.stg.
|
interface |
MutableIntFloatMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableLongFloatMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableObjectFloatMap<K>
This file was automatically generated from template file mutableObjectPrimitiveMap.stg.
|
interface |
MutableShortFloatMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
ObjectFloatMap<K>
This file was automatically generated from template file objectPrimitiveMap.stg.
|
interface |
ShortFloatMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableFloatBooleanMap |
ImmutableFloatBooleanMap.newWithoutAllKeys(FloatIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableFloatCharMap |
ImmutableFloatCharMap.newWithoutAllKeys(FloatIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableFloatByteMap |
ImmutableFloatByteMap.newWithoutAllKeys(FloatIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableFloatShortMap |
ImmutableFloatShortMap.newWithoutAllKeys(FloatIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableFloatLongMap |
ImmutableFloatLongMap.newWithoutAllKeys(FloatIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableFloatDoubleMap |
ImmutableFloatDoubleMap.newWithoutAllKeys(FloatIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableFloatFloatMap |
ImmutableFloatFloatMap.newWithoutAllKeys(FloatIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableFloatIntMap |
ImmutableFloatIntMap.newWithoutAllKeys(FloatIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableFloatObjectMap<V> |
ImmutableFloatObjectMap.newWithoutAllKeys(FloatIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
MutableFloatBooleanMap |
MutableFloatBooleanMap.withoutAllKeys(FloatIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableFloatCharMap |
MutableFloatCharMap.withoutAllKeys(FloatIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableFloatByteMap |
MutableFloatByteMap.withoutAllKeys(FloatIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableFloatShortMap |
MutableFloatShortMap.withoutAllKeys(FloatIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableFloatLongMap |
MutableFloatLongMap.withoutAllKeys(FloatIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableFloatDoubleMap |
MutableFloatDoubleMap.withoutAllKeys(FloatIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableFloatFloatMap |
MutableFloatFloatMap.withoutAllKeys(FloatIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableFloatIntMap |
MutableFloatIntMap.withoutAllKeys(FloatIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableFloatObjectMap<V> |
MutableFloatObjectMap.withoutAllKeys(FloatIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
OrderedFloatIterable
This file was automatically generated from template file orderedPrimitiveIterable.stg.
|
interface |
ReversibleFloatIterable
This file was automatically generated from template file reversiblePrimitiveIterable.stg.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
FloatSet
This file was automatically generated from template file primitiveSet.stg.
|
interface |
ImmutableFloatSet
This file was automatically generated from template file immutablePrimitiveSet.stg.
|
interface |
MutableFloatSet
This file was automatically generated from template file mutablePrimitiveSet.stg.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableFloatSet |
ImmutableFloatSet.newWithAll(FloatIterable elements) |
ImmutableFloatSet |
ImmutableFloatSet.newWithoutAll(FloatIterable elements) |
MutableFloatSet |
MutableFloatSet.withAll(FloatIterable elements) |
MutableFloatSet |
MutableFloatSet.withoutAll(FloatIterable elements) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
FloatStack
This file was automatically generated from template file primitiveStack.stg.
|
interface |
ImmutableFloatStack
This file was automatically generated from template file immutablePrimitiveStack.stg.
|
interface |
MutableFloatStack
This file was automatically generated from template file mutablePrimitiveStack.stg.
|
Copyright © 2004–2023. All rights reserved.