Class CharIterableIterate
- java.lang.Object
-
- org.eclipse.collections.impl.utility.internal.primitive.CharIterableIterate
-
public final class CharIterableIterate 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(CharIterable iterable, CharPredicate predicate)static booleananySatisfy(CharIterable iterable, CharPredicate predicate)static voidappendString(CharIterable iterable, Appendable appendable, String start, String separator, String end)static <V,R extends Collection<V>>
Rcollect(CharIterable iterable, CharToObjectFunction<? extends V> function, R targetCollection)static intcount(CharIterable iterable, CharPredicate predicate)static chardetectIfNone(CharIterable iterable, CharPredicate predicate, char ifNone)static voidforEach(CharIterable iterable, CharProcedure procedure)static <T> TinjectInto(CharIterable iterable, T injectedValue, ObjectCharToObjectFunction<? super T,? extends T> function)static booleanisEmpty(CharIterable iterable)static charmax(CharIterable iterable)static charmaxIfEmpty(CharIterable iterable, char ifEmpty)static charmin(CharIterable iterable)static charminIfEmpty(CharIterable iterable, char ifEmpty)static booleannoneSatisfy(CharIterable iterable, CharPredicate predicate)static booleannotEmpty(CharIterable iterable)static <R extends MutableCharCollection>
Rreject(CharIterable iterable, CharPredicate predicate, R targetCollection)static <R extends MutableCharCollection>
Rselect(CharIterable iterable, CharPredicate predicate, R targetCollection)static longsum(CharIterable iterable)
-
-
-
Method Detail
-
isEmpty
public static boolean isEmpty(CharIterable iterable)
-
notEmpty
public static boolean notEmpty(CharIterable iterable)
-
forEach
public static void forEach(CharIterable iterable, CharProcedure procedure)
-
select
public static <R extends MutableCharCollection> R select(CharIterable iterable, CharPredicate predicate, R targetCollection)
-
reject
public static <R extends MutableCharCollection> R reject(CharIterable iterable, CharPredicate predicate, R targetCollection)
-
collect
public static <V,R extends Collection<V>> R collect(CharIterable iterable, CharToObjectFunction<? extends V> function, R targetCollection)
-
detectIfNone
public static char detectIfNone(CharIterable iterable, CharPredicate predicate, char ifNone)
-
count
public static int count(CharIterable iterable, CharPredicate predicate)
-
anySatisfy
public static boolean anySatisfy(CharIterable iterable, CharPredicate predicate)
-
allSatisfy
public static boolean allSatisfy(CharIterable iterable, CharPredicate predicate)
-
noneSatisfy
public static boolean noneSatisfy(CharIterable iterable, CharPredicate predicate)
-
sum
public static long sum(CharIterable iterable)
-
max
public static char max(CharIterable iterable)
-
maxIfEmpty
public static char maxIfEmpty(CharIterable iterable, char ifEmpty)
-
min
public static char min(CharIterable iterable)
-
minIfEmpty
public static char minIfEmpty(CharIterable iterable, char ifEmpty)
-
appendString
public static void appendString(CharIterable iterable, Appendable appendable, String start, String separator, String end)
-
injectInto
public static <T> T injectInto(CharIterable iterable, T injectedValue, ObjectCharToObjectFunction<? super T,? extends T> function)
-
-