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
All Methods Static Methods Concrete Methods 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 Detail
-
isEmpty
public static boolean isEmpty(BooleanIterable iterable)
-
notEmpty
public static boolean notEmpty(BooleanIterable iterable)
-
forEach
public static void forEach(BooleanIterable iterable, BooleanProcedure procedure)
-
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
public static int count(BooleanIterable iterable, BooleanPredicate predicate)
-
anySatisfy
public static boolean anySatisfy(BooleanIterable iterable, BooleanPredicate predicate)
-
allSatisfy
public static boolean allSatisfy(BooleanIterable iterable, BooleanPredicate predicate)
-
noneSatisfy
public static boolean noneSatisfy(BooleanIterable iterable, BooleanPredicate predicate)
-
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)
-
-