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. -
-
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 FloatListFloatList. rejectWithIndex(FloatIntPredicate predicate)Returns a new FloatList excluding all elements with corresponding indexes matching the specified predicate.default ImmutableFloatListImmutableFloatList. rejectWithIndex(FloatIntPredicate predicate)Returns a new ImmutableFloatList excluding all elements with corresponding indexes matching the specified predicate.default MutableFloatListMutableFloatList. rejectWithIndex(FloatIntPredicate predicate)Returns a new MutableFloatList excluding all elements with corresponding indexes matching the specified predicate.default FloatListFloatList. selectWithIndex(FloatIntPredicate predicate)Returns a new FloatList including all elements with corresponding indexes matching the specified predicate.default ImmutableFloatListImmutableFloatList. selectWithIndex(FloatIntPredicate predicate)Returns a new ImmutableFloatList including all elements with corresponding indexes matching the specified predicate.default MutableFloatListMutableFloatList. 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 FloatIntMapFloatIntMap. reject(FloatIntPredicate predicate)Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableFloatIntMapImmutableFloatIntMap. reject(FloatIntPredicate predicate)MutableFloatIntMapMutableFloatIntMap. reject(FloatIntPredicate predicate)FloatIntMapFloatIntMap. select(FloatIntPredicate predicate)Return a copy of this map containing only the key/value pairs that match the predicate.ImmutableFloatIntMapImmutableFloatIntMap. select(FloatIntPredicate predicate)MutableFloatIntMapMutableFloatIntMap. 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 OrderedFloatIterableOrderedFloatIterable. 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 ReversibleFloatIterableReversibleFloatIterable. rejectWithIndex(FloatIntPredicate predicate)Returns a new ReversibleFloatIterable excluding all elements with corresponding indexes matching the specified predicate.default OrderedFloatIterableOrderedFloatIterable. 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 ReversibleFloatIterableReversibleFloatIterable. 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 FloatStackFloatStack. rejectWithIndex(FloatIntPredicate predicate)Returns a new FloatStack excluding all elements with corresponding indexes matching the specified predicate.default ImmutableFloatStackImmutableFloatStack. rejectWithIndex(FloatIntPredicate predicate)Returns a new ImmutableFloatStack excluding all elements with corresponding indexes matching the specified predicate.default MutableFloatStackMutableFloatStack. rejectWithIndex(FloatIntPredicate predicate)Returns a new MutableFloatStack excluding all elements with corresponding indexes matching the specified predicate.default FloatStackFloatStack. selectWithIndex(FloatIntPredicate predicate)Returns a new FloatStack including all elements with corresponding indexes matching the specified predicate.default ImmutableFloatStackImmutableFloatStack. selectWithIndex(FloatIntPredicate predicate)Returns a new ImmutableFloatStack including all elements with corresponding indexes matching the specified predicate.default MutableFloatStackMutableFloatStack. selectWithIndex(FloatIntPredicate predicate)Returns a new MutableFloatStack including all elements with corresponding indexes matching the specified predicate.
-