Collectors.AveragingLong(IToLongFunction) Method

Definition

Returns a Collector that produces the arithmetic mean of a long-valued function applied to the input elements.

[Android.Runtime.Register("averagingLong", "(Ljava/util/function/ToLongFunction;)Ljava/util/stream/Collector;", "", ApiSince=24)]
[Java.Interop.JavaTypeParameters(new System.String[] { "T" })]
public static Java.Util.Streams.ICollector? AveragingLong (Java.Util.Functions.IToLongFunction? mapper);
[<Android.Runtime.Register("averagingLong", "(Ljava/util/function/ToLongFunction;)Ljava/util/stream/Collector;", "", ApiSince=24)>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "T" })>]
static member AveragingLong : Java.Util.Functions.IToLongFunction -> Java.Util.Streams.ICollector

Parameters

mapper
IToLongFunction

a function extracting the property to be averaged

Returns

a Collector that produces the arithmetic mean of a derived property

Attributes

Remarks

Returns a Collector that produces the arithmetic mean of a long-valued function applied to the input elements. If no elements are present, the result is 0.

Java documentation for java.util.stream.Collectors.averagingLong(java.util.function.ToLongFunction<? super T>).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to