Uses of Interface
org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction
-
Packages that use BooleanToObjectFunction 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.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.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.block.function.primitive This package contains implementations of primitive functions.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.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.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.utility.internal.primitive org.eclipse.collections.impl.utility.primitive -
-
Uses of BooleanToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> RichIterable<V>
BooleanIterable. collect(BooleanToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source collection.default <V,R extends java.util.Collection<V>>
RBooleanIterable. collect(BooleanToObjectFunction<? extends V> function, R target)
Same asBooleanIterable.collect(BooleanToObjectFunction)
, only the results are added to the target Collection.<V> LazyIterable<V>
LazyBooleanIterable. collect(BooleanToObjectFunction<? extends V> function)
default <V,R extends java.util.Collection<V>>
RBooleanIterable. flatCollect(BooleanToObjectFunction<? extends java.lang.Iterable<V>> function, R target)
flatCollect
is a special case ofBooleanIterable.collect(BooleanToObjectFunction)
.<V> LazyIterable<V>
LazyBooleanIterable. flatCollect(BooleanToObjectFunction<? extends java.lang.Iterable<V>> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> Bag<V>
BooleanBag. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableBooleanBag. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
MutableBooleanBag. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> ImmutableCollection<V>
ImmutableBooleanCollection. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableCollection<V>
MutableBooleanCollection. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> ListIterable<V>
BooleanList. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableBooleanList. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableList<V>
MutableBooleanList. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> Bag<V>
BooleanValuesMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableByteBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
MutableBooleanValuesMap. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableCollection<V>
MutableObjectBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> OrderedIterable<V>
OrderedBooleanIterable. collect(BooleanToObjectFunction<? extends V> function)
<V> ReversibleIterable<V>
ReversibleBooleanIterable. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> SetIterable<V>
BooleanSet. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableBooleanSet. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableSet<V>
MutableBooleanSet. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> StackIterable<V>
BooleanStack. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableStack<V>
ImmutableBooleanStack. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableStack<V>
MutableBooleanStack. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> ImmutableBag<V>
ImmutableBooleanEmptyBag. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableBooleanHashBag. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableBooleanSingletonBag. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> MutableBag<V>
BooleanHashBag. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedBooleanBag. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableBooleanBag. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.impl.block.function.primitive
Classes in org.eclipse.collections.impl.block.function.primitive that implement BooleanToObjectFunction Modifier and Type Class Description class
BooleanCaseFunction<V>
This file was automatically generated from template file primitiveCaseFunction.stg.Fields in org.eclipse.collections.impl.block.function.primitive declared as BooleanToObjectFunction Modifier and Type Field Description private BooleanToObjectFunction<? extends V>
BooleanCaseFunction. defaultFunction
Fields in org.eclipse.collections.impl.block.function.primitive with type parameters of type BooleanToObjectFunction Modifier and Type Field Description private MutableList<Pair<BooleanPredicate,BooleanToObjectFunction<? extends V>>>
BooleanCaseFunction. predicateFunctions
Methods in org.eclipse.collections.impl.block.function.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description BooleanCaseFunction<V>
BooleanCaseFunction. addCase(BooleanPredicate predicate, BooleanToObjectFunction<? extends V> function)
BooleanCaseFunction<V>
BooleanCaseFunction. setDefault(BooleanToObjectFunction<? extends V> function)
Constructors in org.eclipse.collections.impl.block.function.primitive with parameters of type BooleanToObjectFunction Constructor Description BooleanCaseFunction(BooleanToObjectFunction<? extends V> newDefaultFunction)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> MutableCollection<V>
AbstractSynchronizedBooleanCollection. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableCollection<V>
AbstractUnmodifiableBooleanCollection. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as BooleanToObjectFunction Modifier and Type Field Description private BooleanToObjectFunction<? extends V>
CollectBooleanToObjectIterable. function
private BooleanToObjectFunction<? extends java.lang.Iterable<V>>
FlatCollectBooleanToObjectIterable.FlatCollectBooleanIterator. function
private BooleanToObjectFunction<? extends java.lang.Iterable<V>>
FlatCollectBooleanToObjectIterable. function
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> LazyIterable<V>
AbstractLazyBooleanIterable. collect(BooleanToObjectFunction<? extends V> function)
<V> LazyIterable<V>
AbstractLazyBooleanIterable. flatCollect(BooleanToObjectFunction<? extends java.lang.Iterable<V>> function)
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type BooleanToObjectFunction Constructor Description CollectBooleanToObjectIterable(BooleanIterable iterable, BooleanToObjectFunction<? extends V> function)
FlatCollectBooleanIterator(BooleanIterable iterable, BooleanToObjectFunction<? extends java.lang.Iterable<V>> newFunction)
FlatCollectBooleanIterator(BooleanIterator newIterator, BooleanToObjectFunction<? extends java.lang.Iterable<V>> newFunction)
FlatCollectBooleanToObjectIterable(BooleanIterable iterable, BooleanToObjectFunction<? extends java.lang.Iterable<V>> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> ImmutableList<V>
ImmutableBooleanArrayList. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableBooleanEmptyList. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableBooleanSingletonList. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> MutableList<V>
BooleanArrayList. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableList<V>
SynchronizedBooleanList. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableList<V>
UnmodifiableBooleanList. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> ImmutableBag<V>
ImmutableByteBooleanEmptyMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableByteBooleanHashMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableByteBooleanSingletonMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharBooleanEmptyMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharBooleanHashMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharBooleanSingletonMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleBooleanEmptyMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleBooleanHashMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleBooleanSingletonMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatBooleanEmptyMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatBooleanHashMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatBooleanSingletonMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntBooleanEmptyMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntBooleanHashMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntBooleanSingletonMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongBooleanEmptyMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongBooleanHashMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongBooleanSingletonMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectBooleanEmptyMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectBooleanHashMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectBooleanSingletonMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortBooleanEmptyMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortBooleanHashMap. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortBooleanSingletonMap. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> MutableCollection<V>
AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
AbstractMutableBooleanValuesMap. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectBooleanHashMap. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectBooleanHashMap.ValuesCollection. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectBooleanHashMapWithHashingStrategy. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectBooleanHashMapWithHashingStrategy.ValuesCollection. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedByteBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedCharBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedDoubleBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedFloatBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedIntBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedLongBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V1> MutableCollection<V1>
SynchronizedObjectBooleanMap. collect(BooleanToObjectFunction<? extends V1> function)
<V> MutableBag<V>
SynchronizedShortBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableByteBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableCharBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableDoubleBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableFloatBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableIntBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableLongBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
<V1> MutableCollection<V1>
UnmodifiableObjectBooleanMap. collect(BooleanToObjectFunction<? extends V1> function)
<V> MutableBag<V>
UnmodifiableShortBooleanMap. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> RichIterable<V>
SynchronizedBooleanIterable. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> ImmutableSet<V>
ImmutableBooleanEmptySet. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableFalseSet. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableTrueFalseSet. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableTrueSet. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> MutableSet<V>
BooleanHashSet. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableSet<V>
SynchronizedBooleanSet. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableSet<V>
UnmodifiableBooleanSet. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> ImmutableStack<V>
ImmutableBooleanArrayStack. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableStack<V>
ImmutableBooleanEmptyStack. collect(BooleanToObjectFunction<? extends V> function)
<V> ImmutableStack<V>
ImmutableBooleanSingletonStack. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> MutableStack<V>
BooleanArrayStack. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableStack<V>
SynchronizedBooleanStack. collect(BooleanToObjectFunction<? extends V> function)
<V> MutableStack<V>
UnmodifiableBooleanStack. collect(BooleanToObjectFunction<? extends V> function)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description static <V,R extends java.util.Collection<V>>
RBooleanIterableIterate. collect(BooleanIterable iterable, BooleanToObjectFunction<? extends V> function, R targetCollection)
static <V,R extends java.util.Collection<V>>
RBooleanIteratorIterate. collect(BooleanIterator iterator, BooleanToObjectFunction<? extends V> function, R targetCollection)
-
Uses of BooleanToObjectFunction in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description static <V> LazyIterable<V>
LazyBooleanIterate. collect(BooleanIterable iterable, BooleanToObjectFunction<? extends V> function)
Creates a deferred transforming boolean iterable for the specified boolean iterable.static <V> LazyIterable<V>
LazyBooleanIterate. collectIf(BooleanIterable iterable, BooleanPredicate predicate, BooleanToObjectFunction<? extends V> function)
Creates a deferred filtering and transforming boolean iterable for the specified boolean iterable.static <V> LazyIterable<V>
LazyBooleanIterate. flatCollect(BooleanIterable iterable, BooleanToObjectFunction<? extends java.lang.Iterable<V>> function)
Creates a deferred transforming and flattening boolean iterable for the specified boolean iterable.
-