Uses of Interface
org.eclipse.collections.api.FloatIterable
Packages that use FloatIterable
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains factory API for creating immutable primitive list instances.
This package contains factory API for creating primitive set instances.
This package contains factory API for creating primitive stack instances.
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
This package contains mutable and immutable primitive stack API.
-
Uses of FloatIterable in org.eclipse.collections.api
Subinterfaces of FloatIterable in org.eclipse.collections.apiModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return FloatIterableModifier and TypeMethodDescriptionRichIterable.collectFloat(FloatFunction<? super T> floatFunction) Returns a new primitivefloatiterable with the results of applying the specified function on each element of the source collection.FloatIterable.reject(FloatPredicate predicate) Returns a new FloatIterable with all of the elements in the FloatIterable that return false for the specified predicate.FloatIterable.select(FloatPredicate predicate) Returns a new FloatIterable with all of the elements in the FloatIterable that return true for the specified predicate.default FloatIterableFloatIterable.tap(FloatProcedure procedure) Methods in org.eclipse.collections.api that return types with arguments of type FloatIterableModifier and TypeMethodDescriptiondefault RichIterable<FloatIterable>FloatIterable.chunk(int size) Partitions elements in fixed size chunks.Methods in org.eclipse.collections.api with parameters of type FloatIterableModifier and TypeMethodDescriptiondefault booleanFloatIterable.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 booleanFloatIterable.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 booleanFloatIterable.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.Method parameters in org.eclipse.collections.api with type arguments of type FloatIterableModifier and TypeMethodDescriptiondefault <R extends MutableFloatCollection>
RRichIterable.flatCollectFloat(Function<? super T, ? extends FloatIterable> function, R target) Same as flatCollect, only the results are collected into the target collection. -
Uses of FloatIterable in org.eclipse.collections.api.bag.primitive
Subinterfaces of FloatIterable in org.eclipse.collections.api.bag.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveBag.stg.interfaceThis file was automatically generated from template file immutablePrimitiveBag.stg.interfaceThis file was automatically generated from template file mutablePrimitiveBag.stg.Methods in org.eclipse.collections.api.bag.primitive with parameters of type FloatIterableModifier and TypeMethodDescriptionImmutableFloatBag.newWithAll(FloatIterable elements) ImmutableFloatBag.newWithoutAll(FloatIterable elements) MutableFloatBag.withAll(FloatIterable elements) MutableFloatBag.withoutAll(FloatIterable elements) -
Uses of FloatIterable in org.eclipse.collections.api.collection.primitive
Subinterfaces of FloatIterable in org.eclipse.collections.api.collection.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file immutablePrimitiveCollection.stg.interfaceThis file was automatically generated from template file mutablePrimitiveCollection.stg.Methods in org.eclipse.collections.api.collection.primitive with parameters of type FloatIterableModifier and TypeMethodDescriptionbooleanMutableFloatCollection.addAll(FloatIterable source) ImmutableFloatCollection.newWithAll(FloatIterable elements) ImmutableFloatCollection.newWithoutAll(FloatIterable elements) booleanMutableFloatCollection.removeAll(FloatIterable source) booleanMutableFloatCollection.retainAll(FloatIterable elements) MutableFloatCollection.withAll(FloatIterable elements) MutableFloatCollection.withoutAll(FloatIterable elements) -
Uses of FloatIterable in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive with parameters of type FloatIterableModifier and TypeMethodDescriptionImmutableFloatBagFactory.ofAll(FloatIterable items) MutableFloatBagFactory.ofAll(FloatIterable items) ImmutableFloatBagFactory.withAll(FloatIterable items) MutableFloatBagFactory.withAll(FloatIterable items) -
Uses of FloatIterable in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive with parameters of type FloatIterableModifier and TypeMethodDescriptionImmutableFloatListFactory.ofAll(FloatIterable items) MutableFloatListFactory.ofAll(FloatIterable items) ImmutableFloatListFactory.withAll(FloatIterable items) MutableFloatListFactory.withAll(FloatIterable items) -
Uses of FloatIterable in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive with parameters of type FloatIterableModifier and TypeMethodDescriptionImmutableFloatSetFactory.ofAll(FloatIterable items) MutableFloatSetFactory.ofAll(FloatIterable items) ImmutableFloatSetFactory.withAll(FloatIterable items) MutableFloatSetFactory.withAll(FloatIterable items) -
Uses of FloatIterable in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive with parameters of type FloatIterableModifier and TypeMethodDescriptionImmutableFloatStackFactory.ofAll(FloatIterable items) MutableFloatStackFactory.ofAll(FloatIterable items) ImmutableFloatStackFactory.ofAllReversed(FloatIterable items) MutableFloatStackFactory.ofAllReversed(FloatIterable items) ImmutableFloatStackFactory.withAll(FloatIterable items) MutableFloatStackFactory.withAll(FloatIterable items) ImmutableFloatStackFactory.withAllReversed(FloatIterable items) MutableFloatStackFactory.withAllReversed(FloatIterable items) -
Uses of FloatIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of FloatIterable in org.eclipse.collections.api.list.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveList.stg.interfaceThis file was automatically generated from template file immutablePrimitiveList.stg.interfaceThis file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive with parameters of type FloatIterableModifier and TypeMethodDescriptionbooleanMutableFloatList.addAllAtIndex(int index, FloatIterable source) ImmutableFloatList.newWithAll(FloatIterable elements) ImmutableFloatList.newWithoutAll(FloatIterable elements) MutableFloatList.withAll(FloatIterable elements) MutableFloatList.withoutAll(FloatIterable elements) default ListIterable<FloatFloatPair>FloatList.zipFloat(FloatIterable iterable) Returns aListIterableformed from thisFloatListand anotherFloatListby combining corresponding elements in pairs.default ImmutableList<FloatFloatPair>ImmutableFloatList.zipFloat(FloatIterable iterable) Returns anImmutableListformed from thisImmutableFloatListand anotherFloatListby combining corresponding elements in pairs.default MutableList<FloatFloatPair>MutableFloatList.zipFloat(FloatIterable iterable) Returns aMutableListformed from thisMutableFloatListand anotherFloatListby combining corresponding elements in pairs. -
Uses of FloatIterable in org.eclipse.collections.api.map.primitive
Subinterfaces of FloatIterable in org.eclipse.collections.api.map.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitiveValuesMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutableObjectPrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveValuesMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutableObjectPrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file objectPrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.Methods in org.eclipse.collections.api.map.primitive with parameters of type FloatIterableModifier and TypeMethodDescriptionImmutableFloatBooleanMap.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.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.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.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.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.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.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.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.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.withoutAllKeys(FloatIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatByteMap.withoutAllKeys(FloatIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatCharMap.withoutAllKeys(FloatIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatDoubleMap.withoutAllKeys(FloatIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatFloatMap.withoutAllKeys(FloatIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatIntMap.withoutAllKeys(FloatIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatLongMap.withoutAllKeys(FloatIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatObjectMap.withoutAllKeys(FloatIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatShortMap.withoutAllKeys(FloatIterable keys) Removes the mappings associated with all the keys, if they exist, from this map. -
Uses of FloatIterable in org.eclipse.collections.api.ordered.primitive
Subinterfaces of FloatIterable in org.eclipse.collections.api.ordered.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file orderedPrimitiveIterable.stg.interfaceThis file was automatically generated from template file reversiblePrimitiveIterable.stg. -
Uses of FloatIterable in org.eclipse.collections.api.set.primitive
Subinterfaces of FloatIterable in org.eclipse.collections.api.set.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveSet.stg.interfaceThis file was automatically generated from template file immutablePrimitiveSet.stg.interfaceThis file was automatically generated from template file mutablePrimitiveSet.stg.Methods in org.eclipse.collections.api.set.primitive with parameters of type FloatIterableModifier and TypeMethodDescriptionImmutableFloatSet.newWithAll(FloatIterable elements) ImmutableFloatSet.newWithoutAll(FloatIterable elements) MutableFloatSet.withAll(FloatIterable elements) MutableFloatSet.withoutAll(FloatIterable elements) -
Uses of FloatIterable in org.eclipse.collections.api.stack.primitive
Subinterfaces of FloatIterable in org.eclipse.collections.api.stack.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveStack.stg.interfaceThis file was automatically generated from template file immutablePrimitiveStack.stg.interfaceThis file was automatically generated from template file mutablePrimitiveStack.stg.