public final class BooleanIterableIterate
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static boolean |
allSatisfy(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.predicate.primitive.BooleanPredicate predicate) |
static boolean |
anySatisfy(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.predicate.primitive.BooleanPredicate predicate) |
static void |
appendString(com.gs.collections.api.BooleanIterable iterable,
java.lang.Appendable appendable,
java.lang.String start,
java.lang.String separator,
java.lang.String end) |
static <V,R extends java.util.Collection<V>> |
collect(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.function.primitive.BooleanToObjectFunction<? extends V> function,
R targetCollection) |
static int |
count(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.predicate.primitive.BooleanPredicate predicate) |
static boolean |
detectIfNone(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.predicate.primitive.BooleanPredicate predicate,
boolean ifNone) |
static void |
forEach(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.procedure.primitive.BooleanProcedure procedure) |
static <T> T |
injectInto(com.gs.collections.api.BooleanIterable iterable,
T injectedValue,
com.gs.collections.api.block.function.primitive.ObjectBooleanToObjectFunction<? super T,? extends T> function) |
static boolean |
isEmpty(com.gs.collections.api.BooleanIterable iterable) |
static boolean |
noneSatisfy(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.predicate.primitive.BooleanPredicate predicate) |
static boolean |
notEmpty(com.gs.collections.api.BooleanIterable iterable) |
static <R extends com.gs.collections.api.collection.primitive.MutableBooleanCollection> |
reject(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.predicate.primitive.BooleanPredicate predicate,
R targetCollection) |
static <R extends com.gs.collections.api.collection.primitive.MutableBooleanCollection> |
select(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.predicate.primitive.BooleanPredicate predicate,
R targetCollection) |
public static boolean isEmpty(com.gs.collections.api.BooleanIterable iterable)
public static boolean notEmpty(com.gs.collections.api.BooleanIterable iterable)
public static void forEach(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.procedure.primitive.BooleanProcedure procedure)
public static <R extends com.gs.collections.api.collection.primitive.MutableBooleanCollection> R select(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.predicate.primitive.BooleanPredicate predicate,
R targetCollection)
public static <R extends com.gs.collections.api.collection.primitive.MutableBooleanCollection> R reject(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.predicate.primitive.BooleanPredicate predicate,
R targetCollection)
public static <V,R extends java.util.Collection<V>> R collect(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.function.primitive.BooleanToObjectFunction<? extends V> function,
R targetCollection)
public static boolean detectIfNone(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.predicate.primitive.BooleanPredicate predicate,
boolean ifNone)
public static int count(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.predicate.primitive.BooleanPredicate predicate)
public static boolean anySatisfy(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.predicate.primitive.BooleanPredicate predicate)
public static boolean allSatisfy(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.predicate.primitive.BooleanPredicate predicate)
public static boolean noneSatisfy(com.gs.collections.api.BooleanIterable iterable,
com.gs.collections.api.block.predicate.primitive.BooleanPredicate predicate)
public static void appendString(com.gs.collections.api.BooleanIterable iterable,
java.lang.Appendable appendable,
java.lang.String start,
java.lang.String separator,
java.lang.String end)
public static <T> T injectInto(com.gs.collections.api.BooleanIterable iterable,
T injectedValue,
com.gs.collections.api.block.function.primitive.ObjectBooleanToObjectFunction<? super T,? extends T> function)