Uses of Interface
java.util.function.ToDoubleFunction
-
Packages that use ToDoubleFunction Package Description java.util Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array).java.util.concurrent Utility classes commonly useful in concurrent programming.java.util.stream Classes to support functional-style operations on streams of elements, such as map-reduce transformations on collections. -
-
Uses of ToDoubleFunction in java.util
Methods in java.util with parameters of type ToDoubleFunction Modifier and Type Method and Description static <T> Comparator<T>
Comparator. comparingDouble(ToDoubleFunction<? super T> keyExtractor)
Accepts a function that extracts adouble
sort key from a typeT
, and returns aComparator<T>
that compares by that sort key.default Comparator<T>
Comparator. thenComparingDouble(ToDoubleFunction<? super T> keyExtractor)
Returns a lexicographic-order comparator with a function that extracts adouble
sort key. -
Uses of ToDoubleFunction in java.util.concurrent
Methods in java.util.concurrent with parameters of type ToDoubleFunction Modifier and Type Method and Description double
ConcurrentHashMap. reduceEntriesToDouble(long parallelismThreshold, ToDoubleFunction<Map.Entry<K,V>> transformer, double basis, DoubleBinaryOperator reducer)
Returns the result of accumulating the given transformation of all entries using the given reducer to combine values, and the given basis as an identity value.double
ConcurrentHashMap. reduceKeysToDouble(long parallelismThreshold, ToDoubleFunction<? super K> transformer, double basis, DoubleBinaryOperator reducer)
Returns the result of accumulating the given transformation of all keys using the given reducer to combine values, and the given basis as an identity value.double
ConcurrentHashMap. reduceValuesToDouble(long parallelismThreshold, ToDoubleFunction<? super V> transformer, double basis, DoubleBinaryOperator reducer)
Returns the result of accumulating the given transformation of all values using the given reducer to combine values, and the given basis as an identity value. -
Uses of ToDoubleFunction in java.util.stream
Methods in java.util.stream with parameters of type ToDoubleFunction Modifier and Type Method and Description static <T> Collector<T,?,Double>
Collectors. averagingDouble(ToDoubleFunction<? super T> mapper)
Returns aCollector
that produces the arithmetic mean of a double-valued function applied to the input elements.DoubleStream
Stream. mapToDouble(ToDoubleFunction<? super T> mapper)
Returns aDoubleStream
consisting of the results of applying the given function to the elements of this stream.static <T> Collector<T,?,DoubleSummaryStatistics>
Collectors. summarizingDouble(ToDoubleFunction<? super T> mapper)
Returns aCollector
which applies andouble
-producing mapping function to each input element, and returns summary statistics for the resulting values.static <T> Collector<T,?,Double>
Collectors. summingDouble(ToDoubleFunction<? super T> mapper)
Returns aCollector
that produces the sum of a double-valued function applied to the input elements.
-
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2022, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.