Class BooleanIterableIterate
java.lang.Object
org.eclipse.collections.impl.utility.internal.primitive.BooleanIterableIterate
public final class BooleanIterableIterate extends Object
This file was automatically generated from template file primitiveIterableIterate.stg.
- Since:
- 5.0
-
Method Summary
Modifier and Type Method Description static booleanallSatisfy(BooleanIterable iterable, BooleanPredicate predicate)static booleananySatisfy(BooleanIterable iterable, BooleanPredicate predicate)static voidappendString(BooleanIterable iterable, Appendable appendable, String start, String separator, String end)static <V, R extends Collection<V>>
Rcollect(BooleanIterable iterable, BooleanToObjectFunction<? extends V> function, R targetCollection)static intcount(BooleanIterable iterable, BooleanPredicate predicate)static booleandetectIfNone(BooleanIterable iterable, BooleanPredicate predicate, boolean ifNone)static voidforEach(BooleanIterable iterable, BooleanProcedure procedure)static <T> TinjectInto(BooleanIterable iterable, T injectedValue, ObjectBooleanToObjectFunction<? super T,? extends T> function)static booleanisEmpty(BooleanIterable iterable)static booleannoneSatisfy(BooleanIterable iterable, BooleanPredicate predicate)static booleannotEmpty(BooleanIterable iterable)static <R extends MutableBooleanCollection>
Rreject(BooleanIterable iterable, BooleanPredicate predicate, R targetCollection)static <R extends MutableBooleanCollection>
Rselect(BooleanIterable iterable, BooleanPredicate predicate, R targetCollection)
-
Method Details
-
isEmpty
-
notEmpty
-
forEach
-
select
public static <R extends MutableBooleanCollection> R select(BooleanIterable iterable, BooleanPredicate predicate, R targetCollection) -
reject
public static <R extends MutableBooleanCollection> R reject(BooleanIterable iterable, BooleanPredicate predicate, R targetCollection) -
collect
public static <V, R extends Collection<V>> R collect(BooleanIterable iterable, BooleanToObjectFunction<? extends V> function, R targetCollection) -
detectIfNone
public static boolean detectIfNone(BooleanIterable iterable, BooleanPredicate predicate, boolean ifNone) -
count
-
anySatisfy
-
allSatisfy
-
noneSatisfy
-
appendString
public static void appendString(BooleanIterable iterable, Appendable appendable, String start, String separator, String end) -
injectInto
public static <T> T injectInto(BooleanIterable iterable, T injectedValue, ObjectBooleanToObjectFunction<? super T,? extends T> function)
-