Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.DoubleIntPredicate
-
Packages that use DoubleIntPredicate 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 DoubleIntPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type DoubleIntPredicate Modifier and Type Method Description default DoubleListDoubleList. rejectWithIndex(DoubleIntPredicate predicate)Returns a new DoubleList excluding all elements with corresponding indexes matching the specified predicate.default ImmutableDoubleListImmutableDoubleList. rejectWithIndex(DoubleIntPredicate predicate)Returns a new ImmutableDoubleList excluding all elements with corresponding indexes matching the specified predicate.default MutableDoubleListMutableDoubleList. rejectWithIndex(DoubleIntPredicate predicate)Returns a new MutableDoubleList excluding all elements with corresponding indexes matching the specified predicate.default DoubleListDoubleList. selectWithIndex(DoubleIntPredicate predicate)Returns a new DoubleList including all elements with corresponding indexes matching the specified predicate.default ImmutableDoubleListImmutableDoubleList. selectWithIndex(DoubleIntPredicate predicate)Returns a new ImmutableDoubleList including all elements with corresponding indexes matching the specified predicate.default MutableDoubleListMutableDoubleList. selectWithIndex(DoubleIntPredicate predicate)Returns a new MutableDoubleList including all elements with corresponding indexes matching the specified predicate. -
Uses of DoubleIntPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type DoubleIntPredicate Modifier and Type Method Description DoubleIntMapDoubleIntMap. reject(DoubleIntPredicate predicate)Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableDoubleIntMapImmutableDoubleIntMap. reject(DoubleIntPredicate predicate)MutableDoubleIntMapMutableDoubleIntMap. reject(DoubleIntPredicate predicate)DoubleIntMapDoubleIntMap. select(DoubleIntPredicate predicate)Return a copy of this map containing only the key/value pairs that match the predicate.ImmutableDoubleIntMapImmutableDoubleIntMap. select(DoubleIntPredicate predicate)MutableDoubleIntMapMutableDoubleIntMap. select(DoubleIntPredicate predicate) -
Uses of DoubleIntPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type DoubleIntPredicate Modifier and Type Method Description default OrderedDoubleIterableOrderedDoubleIterable. rejectWithIndex(DoubleIntPredicate predicate)Returns a new OrderedDoubleIterable excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableDoubleCollection>
ROrderedDoubleIterable. rejectWithIndex(DoubleIntPredicate predicate, R target)Returns a new MutableDoubleCollection excluding all elements with corresponding indexes matching the specified predicate.default ReversibleDoubleIterableReversibleDoubleIterable. rejectWithIndex(DoubleIntPredicate predicate)Returns a new ReversibleDoubleIterable excluding all elements with corresponding indexes matching the specified predicate.default OrderedDoubleIterableOrderedDoubleIterable. selectWithIndex(DoubleIntPredicate predicate)Returns a new OrderedDoubleIterable including all elements with corresponding indexes matching the specified predicate.default <R extends MutableDoubleCollection>
ROrderedDoubleIterable. selectWithIndex(DoubleIntPredicate predicate, R target)Returns a new MutableDoubleCollection including all elements with corresponding indexes matching the specified predicate.default ReversibleDoubleIterableReversibleDoubleIterable. selectWithIndex(DoubleIntPredicate predicate)Returns a new ReversibleDoubleIterable including all elements with corresponding indexes matching the specified predicate. -
Uses of DoubleIntPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type DoubleIntPredicate Modifier and Type Method Description default DoubleStackDoubleStack. rejectWithIndex(DoubleIntPredicate predicate)Returns a new DoubleStack excluding all elements with corresponding indexes matching the specified predicate.default ImmutableDoubleStackImmutableDoubleStack. rejectWithIndex(DoubleIntPredicate predicate)Returns a new ImmutableDoubleStack excluding all elements with corresponding indexes matching the specified predicate.default MutableDoubleStackMutableDoubleStack. rejectWithIndex(DoubleIntPredicate predicate)Returns a new MutableDoubleStack excluding all elements with corresponding indexes matching the specified predicate.default DoubleStackDoubleStack. selectWithIndex(DoubleIntPredicate predicate)Returns a new DoubleStack including all elements with corresponding indexes matching the specified predicate.default ImmutableDoubleStackImmutableDoubleStack. selectWithIndex(DoubleIntPredicate predicate)Returns a new ImmutableDoubleStack including all elements with corresponding indexes matching the specified predicate.default MutableDoubleStackMutableDoubleStack. selectWithIndex(DoubleIntPredicate predicate)Returns a new MutableDoubleStack including all elements with corresponding indexes matching the specified predicate.
-