public interface FloatList extends ReversibleFloatIterable
Modifier and Type | Method and Description |
---|---|
int |
binarySearch(float value) |
<V> ListIterable<V> |
collect(FloatToObjectFunction<? extends V> function) |
FloatList |
distinct() |
double |
dotProduct(FloatList list) |
boolean |
equals(Object o)
Follows the same general contract as
List.equals(Object) . |
float |
get(int index) |
int |
hashCode()
Follows the same general contract as
List.hashCode() . |
int |
lastIndexOf(float value) |
FloatList |
reject(FloatPredicate predicate) |
FloatList |
select(FloatPredicate predicate) |
FloatList |
subList(int fromIndex,
int toIndex) |
ImmutableFloatList |
toImmutable()
Returns an immutable copy of this list.
|
FloatList |
toReversed() |
asReversed, getLast, injectIntoWithIndex
forEachWithIndex, getFirst, indexOf
allSatisfy, anySatisfy, asLazy, average, contains, containsAll, containsAll, count, detectIfNone, each, floatIterator, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedList
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
float get(int index)
double dotProduct(FloatList list)
int binarySearch(float value)
int lastIndexOf(float value)
FloatList select(FloatPredicate predicate)
select
in interface FloatIterable
select
in interface OrderedFloatIterable
select
in interface ReversibleFloatIterable
FloatList reject(FloatPredicate predicate)
reject
in interface FloatIterable
reject
in interface OrderedFloatIterable
reject
in interface ReversibleFloatIterable
<V> ListIterable<V> collect(FloatToObjectFunction<? extends V> function)
collect
in interface FloatIterable
collect
in interface OrderedFloatIterable
collect
in interface ReversibleFloatIterable
boolean equals(Object o)
List.equals(Object)
.int hashCode()
List.hashCode()
.ImmutableFloatList toImmutable()
FloatList distinct()
distinct
in interface ReversibleFloatIterable
FloatList toReversed()
toReversed
in interface ReversibleFloatIterable
FloatList subList(int fromIndex, int toIndex)
List#subList(int fromIndex, int toIndex)}
Copyright © 2004–2016. All rights reserved.