Class DoubleIterableIterate
java.lang.Object
org.eclipse.collections.impl.utility.internal.primitive.DoubleIterableIterate
This file was automatically generated from template file primitiveIterableIterate.stg.
- Since:
- 5.0
-
Method Summary
Modifier and TypeMethodDescriptionstatic booleanallSatisfy(DoubleIterable iterable, DoublePredicate predicate) static booleananySatisfy(DoubleIterable iterable, DoublePredicate predicate) static voidappendString(DoubleIterable iterable, Appendable appendable, String start, String separator, String end) static <V,R extends Collection<V>>
Rcollect(DoubleIterable iterable, DoubleToObjectFunction<? extends V> function, R targetCollection) static intcount(DoubleIterable iterable, DoublePredicate predicate) static doubledetectIfNone(DoubleIterable iterable, DoublePredicate predicate, double ifNone) static voidforEach(DoubleIterable iterable, DoubleProcedure procedure) static <T> TinjectInto(DoubleIterable iterable, T injectedValue, ObjectDoubleToObjectFunction<? super T, ? extends T> function) static booleanisEmpty(DoubleIterable iterable) static doublemax(DoubleIterable iterable) static doublemaxIfEmpty(DoubleIterable iterable, double ifEmpty) static doublemin(DoubleIterable iterable) static doubleminIfEmpty(DoubleIterable iterable, double ifEmpty) static booleannoneSatisfy(DoubleIterable iterable, DoublePredicate predicate) static booleannotEmpty(DoubleIterable iterable) static <R extends MutableDoubleCollection>
Rreject(DoubleIterable iterable, DoublePredicate predicate, R targetCollection) static <R extends MutableDoubleCollection>
Rselect(DoubleIterable iterable, DoublePredicate predicate, R targetCollection) static doublesum(DoubleIterable iterable)
-
Method Details
-
isEmpty
-
notEmpty
-
forEach
-
select
public static <R extends MutableDoubleCollection> R select(DoubleIterable iterable, DoublePredicate predicate, R targetCollection) -
reject
public static <R extends MutableDoubleCollection> R reject(DoubleIterable iterable, DoublePredicate predicate, R targetCollection) -
collect
public static <V,R extends Collection<V>> R collect(DoubleIterable iterable, DoubleToObjectFunction<? extends V> function, R targetCollection) -
detectIfNone
public static double detectIfNone(DoubleIterable iterable, DoublePredicate predicate, double ifNone) -
count
-
anySatisfy
-
allSatisfy
-
noneSatisfy
-
sum
-
max
-
maxIfEmpty
-
min
-
minIfEmpty
-
appendString
public static void appendString(DoubleIterable iterable, Appendable appendable, String start, String separator, String end) -
injectInto
public static <T> T injectInto(DoubleIterable iterable, T injectedValue, ObjectDoubleToObjectFunction<? super T, ? extends T> function)
-