Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.FloatIntPredicate
-
Packages that use FloatIntPredicate Package Description 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.stack.primitive This package contains mutable and immutable primitive stack API.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces. -
-
Uses of FloatIntPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type FloatIntPredicate Modifier and Type Method Description default FloatList
FloatList. rejectWithIndex(FloatIntPredicate predicate)
Returns a new FloatList excluding all elements with corresponding indexes matching the specified predicate.default ImmutableFloatList
ImmutableFloatList. rejectWithIndex(FloatIntPredicate predicate)
Returns a new ImmutableFloatList excluding all elements with corresponding indexes matching the specified predicate.default MutableFloatList
MutableFloatList. rejectWithIndex(FloatIntPredicate predicate)
Returns a new MutableFloatList excluding all elements with corresponding indexes matching the specified predicate.default FloatList
FloatList. selectWithIndex(FloatIntPredicate predicate)
Returns a new FloatList including all elements with corresponding indexes matching the specified predicate.default ImmutableFloatList
ImmutableFloatList. selectWithIndex(FloatIntPredicate predicate)
Returns a new ImmutableFloatList including all elements with corresponding indexes matching the specified predicate.default MutableFloatList
MutableFloatList. selectWithIndex(FloatIntPredicate predicate)
Returns a new MutableFloatList including all elements with corresponding indexes matching the specified predicate. -
Uses of FloatIntPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type FloatIntPredicate Modifier and Type Method Description FloatIntMap
FloatIntMap. reject(FloatIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableFloatIntMap
ImmutableFloatIntMap. reject(FloatIntPredicate predicate)
MutableFloatIntMap
MutableFloatIntMap. reject(FloatIntPredicate predicate)
FloatIntMap
FloatIntMap. select(FloatIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that match the predicate.ImmutableFloatIntMap
ImmutableFloatIntMap. select(FloatIntPredicate predicate)
MutableFloatIntMap
MutableFloatIntMap. select(FloatIntPredicate predicate)
-
Uses of FloatIntPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type FloatIntPredicate Modifier and Type Method Description default OrderedFloatIterable
OrderedFloatIterable. rejectWithIndex(FloatIntPredicate predicate)
Returns a new OrderedFloatIterable excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableFloatCollection>
ROrderedFloatIterable. rejectWithIndex(FloatIntPredicate predicate, R target)
Returns a new MutableFloatCollection excluding all elements with corresponding indexes matching the specified predicate.default ReversibleFloatIterable
ReversibleFloatIterable. rejectWithIndex(FloatIntPredicate predicate)
Returns a new ReversibleFloatIterable excluding all elements with corresponding indexes matching the specified predicate.default OrderedFloatIterable
OrderedFloatIterable. selectWithIndex(FloatIntPredicate predicate)
Returns a new OrderedFloatIterable including all elements with corresponding indexes matching the specified predicate.default <R extends MutableFloatCollection>
ROrderedFloatIterable. selectWithIndex(FloatIntPredicate predicate, R target)
Returns a new MutableFloatCollection including all elements with corresponding indexes matching the specified predicate.default ReversibleFloatIterable
ReversibleFloatIterable. selectWithIndex(FloatIntPredicate predicate)
Returns a new ReversibleFloatIterable including all elements with corresponding indexes matching the specified predicate. -
Uses of FloatIntPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type FloatIntPredicate Modifier and Type Method Description default FloatStack
FloatStack. rejectWithIndex(FloatIntPredicate predicate)
Returns a new FloatStack excluding all elements with corresponding indexes matching the specified predicate.default ImmutableFloatStack
ImmutableFloatStack. rejectWithIndex(FloatIntPredicate predicate)
Returns a new ImmutableFloatStack excluding all elements with corresponding indexes matching the specified predicate.default MutableFloatStack
MutableFloatStack. rejectWithIndex(FloatIntPredicate predicate)
Returns a new MutableFloatStack excluding all elements with corresponding indexes matching the specified predicate.default FloatStack
FloatStack. selectWithIndex(FloatIntPredicate predicate)
Returns a new FloatStack including all elements with corresponding indexes matching the specified predicate.default ImmutableFloatStack
ImmutableFloatStack. selectWithIndex(FloatIntPredicate predicate)
Returns a new ImmutableFloatStack including all elements with corresponding indexes matching the specified predicate.default MutableFloatStack
MutableFloatStack. selectWithIndex(FloatIntPredicate predicate)
Returns a new MutableFloatStack including all elements with corresponding indexes matching the specified predicate. -
Uses of FloatIntPredicate in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type FloatIntPredicate Modifier and Type Method Description MutableFloatList
SynchronizedFloatList. rejectWithIndex(FloatIntPredicate predicate)
Returns a new MutableFloatList excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableFloatCollection>
RSynchronizedFloatList. rejectWithIndex(FloatIntPredicate predicate, R target)
Returns a new MutableFloatCollection excluding all elements with corresponding indexes matching the specified predicate.MutableFloatList
UnmodifiableFloatList. rejectWithIndex(FloatIntPredicate predicate)
Returns a new MutableFloatList excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableFloatCollection>
RUnmodifiableFloatList. rejectWithIndex(FloatIntPredicate predicate, R target)
Returns a new MutableFloatCollection excluding all elements with corresponding indexes matching the specified predicate.MutableFloatList
SynchronizedFloatList. selectWithIndex(FloatIntPredicate predicate)
Returns a new MutableFloatList including all elements with corresponding indexes matching the specified predicate.<R extends MutableFloatCollection>
RSynchronizedFloatList. selectWithIndex(FloatIntPredicate predicate, R target)
Returns a new MutableFloatCollection including all elements with corresponding indexes matching the specified predicate.MutableFloatList
UnmodifiableFloatList. selectWithIndex(FloatIntPredicate predicate)
Returns a new MutableFloatList including all elements with corresponding indexes matching the specified predicate.<R extends MutableFloatCollection>
RUnmodifiableFloatList. selectWithIndex(FloatIntPredicate predicate, R target)
Returns a new MutableFloatCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of FloatIntPredicate in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type FloatIntPredicate Modifier and Type Method Description ImmutableFloatIntMap
ImmutableFloatIntEmptyMap. reject(FloatIntPredicate predicate)
ImmutableFloatIntMap
ImmutableFloatIntHashMap. reject(FloatIntPredicate predicate)
ImmutableFloatIntMap
ImmutableFloatIntSingletonMap. reject(FloatIntPredicate predicate)
ImmutableFloatIntMap
ImmutableFloatIntEmptyMap. select(FloatIntPredicate predicate)
ImmutableFloatIntMap
ImmutableFloatIntHashMap. select(FloatIntPredicate predicate)
ImmutableFloatIntMap
ImmutableFloatIntSingletonMap. select(FloatIntPredicate predicate)
-
Uses of FloatIntPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type FloatIntPredicate Modifier and Type Method Description FloatIntHashMap
FloatIntHashMap. reject(FloatIntPredicate predicate)
MutableFloatIntMap
SynchronizedFloatIntMap. reject(FloatIntPredicate predicate)
MutableFloatIntMap
UnmodifiableFloatIntMap. reject(FloatIntPredicate predicate)
FloatIntHashMap
FloatIntHashMap. select(FloatIntPredicate predicate)
MutableFloatIntMap
SynchronizedFloatIntMap. select(FloatIntPredicate predicate)
MutableFloatIntMap
UnmodifiableFloatIntMap. select(FloatIntPredicate predicate)
-
Uses of FloatIntPredicate in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type FloatIntPredicate Modifier and Type Method Description MutableFloatStack
SynchronizedFloatStack. rejectWithIndex(FloatIntPredicate predicate)
Returns a new MutableFloatStack excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableFloatCollection>
RSynchronizedFloatStack. rejectWithIndex(FloatIntPredicate predicate, R target)
Returns a new MutableFloatCollection excluding all elements with corresponding indexes matching the specified predicate.MutableFloatStack
SynchronizedFloatStack. selectWithIndex(FloatIntPredicate predicate)
Returns a new MutableFloatStack including all elements with corresponding indexes matching the specified predicate.<R extends MutableFloatCollection>
RSynchronizedFloatStack. selectWithIndex(FloatIntPredicate predicate, R target)
Returns a new MutableFloatCollection including all elements with corresponding indexes matching the specified predicate.
-