IComparator.ComparingLong(IToLongFunction) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Accepts a function that extracts a long
sort key from a type
T
, and returns a Comparator<T>
that compares by that
sort key.
[Android.Runtime.Register("comparingLong", "(Ljava/util/function/ToLongFunction;)Ljava/util/Comparator;", "", ApiSince=24)]
[Java.Interop.JavaTypeParameters(new System.String[] { "T" })]
public static Java.Util.IComparator? ComparingLong (Java.Util.Functions.IToLongFunction? keyExtractor);
[<Android.Runtime.Register("comparingLong", "(Ljava/util/function/ToLongFunction;)Ljava/util/Comparator;", "", ApiSince=24)>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "T" })>]
static member ComparingLong : Java.Util.Functions.IToLongFunction -> Java.Util.IComparator
Parameters
- keyExtractor
- IToLongFunction
the function used to extract the long sort key
Returns
a comparator that compares by an extracted key
- Attributes
Remarks
Accepts a function that extracts a long
sort key from a type T
, and returns a Comparator<T>
that compares by that sort key.
The returned comparator is serializable if the specified function is also serializable.
Added in 1.8.
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.