public abstract class AbstractLazyDoubleIterable extends Object implements org.eclipse.collections.api.LazyDoubleIterable
| Constructor and Description |
|---|
AbstractLazyDoubleIterable() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
allSatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate) |
boolean |
anySatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate) |
void |
appendString(Appendable appendable) |
void |
appendString(Appendable appendable,
String separator) |
void |
appendString(Appendable appendable,
String start,
String separator,
String end) |
org.eclipse.collections.api.LazyDoubleIterable |
asLazy() |
double |
average() |
<V> org.eclipse.collections.api.LazyIterable<V> |
collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction<? extends V> function) |
org.eclipse.collections.api.LazyBooleanIterable |
collectBoolean(org.eclipse.collections.api.block.function.primitive.DoubleToBooleanFunction function) |
org.eclipse.collections.api.LazyByteIterable |
collectByte(org.eclipse.collections.api.block.function.primitive.DoubleToByteFunction function) |
org.eclipse.collections.api.LazyCharIterable |
collectChar(org.eclipse.collections.api.block.function.primitive.DoubleToCharFunction function) |
org.eclipse.collections.api.LazyDoubleIterable |
collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleToDoubleFunction function) |
org.eclipse.collections.api.LazyFloatIterable |
collectFloat(org.eclipse.collections.api.block.function.primitive.DoubleToFloatFunction function) |
org.eclipse.collections.api.LazyIntIterable |
collectInt(org.eclipse.collections.api.block.function.primitive.DoubleToIntFunction function) |
org.eclipse.collections.api.LazyLongIterable |
collectLong(org.eclipse.collections.api.block.function.primitive.DoubleToLongFunction function) |
org.eclipse.collections.api.LazyShortIterable |
collectShort(org.eclipse.collections.api.block.function.primitive.DoubleToShortFunction function) |
boolean |
contains(double value) |
boolean |
containsAll(double... source) |
boolean |
containsAll(org.eclipse.collections.api.DoubleIterable source) |
int |
count(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate) |
double |
detectIfNone(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate,
double ifNone) |
void |
forEach(org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure) |
<T> T |
injectInto(T injectedValue,
org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction<? super T,? extends T> function) |
boolean |
isEmpty() |
String |
makeString() |
String |
makeString(String separator) |
String |
makeString(String start,
String separator,
String end) |
double |
max() |
double |
maxIfEmpty(double ifEmpty) |
double |
median() |
double |
min() |
double |
minIfEmpty(double ifEmpty) |
boolean |
noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate) |
boolean |
notEmpty() |
org.eclipse.collections.api.LazyDoubleIterable |
reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate) |
org.eclipse.collections.api.LazyDoubleIterable |
select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate) |
int |
size() |
double |
sum() |
double[] |
toArray() |
org.eclipse.collections.api.bag.primitive.MutableDoubleBag |
toBag() |
org.eclipse.collections.api.list.primitive.MutableDoubleList |
toList() |
org.eclipse.collections.api.set.primitive.MutableDoubleSet |
toSet() |
double[] |
toSortedArray() |
org.eclipse.collections.api.list.primitive.MutableDoubleList |
toSortedList() |
String |
toString() |
public void forEach(org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure)
forEach in interface org.eclipse.collections.api.DoubleIterablepublic int size()
size in interface org.eclipse.collections.api.PrimitiveIterablepublic String toString()
public boolean isEmpty()
isEmpty in interface org.eclipse.collections.api.PrimitiveIterablepublic boolean notEmpty()
notEmpty in interface org.eclipse.collections.api.PrimitiveIterablepublic String makeString()
makeString in interface org.eclipse.collections.api.PrimitiveIterablepublic String makeString(String separator)
makeString in interface org.eclipse.collections.api.PrimitiveIterablepublic String makeString(String start, String separator, String end)
makeString in interface org.eclipse.collections.api.PrimitiveIterablepublic void appendString(Appendable appendable)
appendString in interface org.eclipse.collections.api.PrimitiveIterablepublic void appendString(Appendable appendable, String separator)
appendString in interface org.eclipse.collections.api.PrimitiveIterablepublic void appendString(Appendable appendable, String start, String separator, String end)
appendString in interface org.eclipse.collections.api.PrimitiveIterablepublic boolean contains(double value)
contains in interface org.eclipse.collections.api.DoubleIterablepublic boolean containsAll(double... source)
containsAll in interface org.eclipse.collections.api.DoubleIterablepublic boolean containsAll(org.eclipse.collections.api.DoubleIterable source)
containsAll in interface org.eclipse.collections.api.DoubleIterablepublic org.eclipse.collections.api.LazyDoubleIterable select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate)
select in interface org.eclipse.collections.api.DoubleIterableselect in interface org.eclipse.collections.api.LazyDoubleIterablepublic org.eclipse.collections.api.LazyDoubleIterable reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate)
reject in interface org.eclipse.collections.api.DoubleIterablereject in interface org.eclipse.collections.api.LazyDoubleIterablepublic <V> org.eclipse.collections.api.LazyIterable<V> collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction<? extends V> function)
collect in interface org.eclipse.collections.api.DoubleIterablecollect in interface org.eclipse.collections.api.LazyDoubleIterablepublic org.eclipse.collections.api.LazyBooleanIterable collectBoolean(org.eclipse.collections.api.block.function.primitive.DoubleToBooleanFunction function)
collectBoolean in interface org.eclipse.collections.api.LazyDoubleIterablepublic org.eclipse.collections.api.LazyByteIterable collectByte(org.eclipse.collections.api.block.function.primitive.DoubleToByteFunction function)
collectByte in interface org.eclipse.collections.api.LazyDoubleIterablepublic org.eclipse.collections.api.LazyCharIterable collectChar(org.eclipse.collections.api.block.function.primitive.DoubleToCharFunction function)
collectChar in interface org.eclipse.collections.api.LazyDoubleIterablepublic org.eclipse.collections.api.LazyShortIterable collectShort(org.eclipse.collections.api.block.function.primitive.DoubleToShortFunction function)
collectShort in interface org.eclipse.collections.api.LazyDoubleIterablepublic org.eclipse.collections.api.LazyIntIterable collectInt(org.eclipse.collections.api.block.function.primitive.DoubleToIntFunction function)
collectInt in interface org.eclipse.collections.api.LazyDoubleIterablepublic org.eclipse.collections.api.LazyFloatIterable collectFloat(org.eclipse.collections.api.block.function.primitive.DoubleToFloatFunction function)
collectFloat in interface org.eclipse.collections.api.LazyDoubleIterablepublic org.eclipse.collections.api.LazyLongIterable collectLong(org.eclipse.collections.api.block.function.primitive.DoubleToLongFunction function)
collectLong in interface org.eclipse.collections.api.LazyDoubleIterablepublic org.eclipse.collections.api.LazyDoubleIterable collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleToDoubleFunction function)
collectDouble in interface org.eclipse.collections.api.LazyDoubleIterablepublic double detectIfNone(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate,
double ifNone)
detectIfNone in interface org.eclipse.collections.api.DoubleIterablepublic int count(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate)
count in interface org.eclipse.collections.api.DoubleIterablepublic boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate)
anySatisfy in interface org.eclipse.collections.api.DoubleIterablepublic boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate)
allSatisfy in interface org.eclipse.collections.api.DoubleIterablepublic boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate)
noneSatisfy in interface org.eclipse.collections.api.DoubleIterablepublic <T> T injectInto(T injectedValue,
org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction<? super T,? extends T> function)
injectInto in interface org.eclipse.collections.api.DoubleIterablepublic double[] toArray()
toArray in interface org.eclipse.collections.api.DoubleIterablepublic org.eclipse.collections.api.list.primitive.MutableDoubleList toList()
toList in interface org.eclipse.collections.api.DoubleIterablepublic org.eclipse.collections.api.set.primitive.MutableDoubleSet toSet()
toSet in interface org.eclipse.collections.api.DoubleIterablepublic org.eclipse.collections.api.bag.primitive.MutableDoubleBag toBag()
toBag in interface org.eclipse.collections.api.DoubleIterablepublic double sum()
sum in interface org.eclipse.collections.api.DoubleIterablepublic double max()
max in interface org.eclipse.collections.api.DoubleIterablepublic double maxIfEmpty(double ifEmpty)
maxIfEmpty in interface org.eclipse.collections.api.DoubleIterablepublic double min()
min in interface org.eclipse.collections.api.DoubleIterablepublic double minIfEmpty(double ifEmpty)
minIfEmpty in interface org.eclipse.collections.api.DoubleIterablepublic double average()
average in interface org.eclipse.collections.api.DoubleIterablepublic double median()
median in interface org.eclipse.collections.api.DoubleIterablepublic double[] toSortedArray()
toSortedArray in interface org.eclipse.collections.api.DoubleIterablepublic org.eclipse.collections.api.list.primitive.MutableDoubleList toSortedList()
toSortedList in interface org.eclipse.collections.api.DoubleIterablepublic org.eclipse.collections.api.LazyDoubleIterable asLazy()
asLazy in interface org.eclipse.collections.api.DoubleIterableCopyright © 2004–2017. All rights reserved.