Comparator.ComparingInt(IToIntFunction) 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.
Caution
Use 'Java.Util.IComparator.ComparingInt'. This class will be removed in a future release.
Accepts a function that extracts an int
sort key from a type
T
, and returns a Comparator<T>
that compares by that
sort key.
[Android.Runtime.Register("comparingInt", "(Ljava/util/function/ToIntFunction;)Ljava/util/Comparator;", "", ApiSince=24)]
[Java.Interop.JavaTypeParameters(new System.String[] { "T" })]
[System.Obsolete("Use 'Java.Util.IComparator.ComparingInt'. This class will be removed in a future release.")]
public static Java.Util.IComparator? ComparingInt (Java.Util.Functions.IToIntFunction? keyExtractor);
[<Android.Runtime.Register("comparingInt", "(Ljava/util/function/ToIntFunction;)Ljava/util/Comparator;", "", ApiSince=24)>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "T" })>]
[<System.Obsolete("Use 'Java.Util.IComparator.ComparingInt'. This class will be removed in a future release.")>]
static member ComparingInt : Java.Util.Functions.IToIntFunction -> Java.Util.IComparator
Parameters
- keyExtractor
- IToIntFunction
the function used to extract the integer sort key
Returns
a comparator that compares by an extracted key
- Attributes
Remarks
Accepts a function that extracts an int
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.