SortWithKeyExtension<E> extension

Provides a sortWithKey extension method on List.

on

Methods

sortWithAsyncKey<K extends Comparable<Object>>(Future<K> key(E)) Future<void>

Available on List<E>, provided by the SortWithKeyExtension extension

A version of sortWithKey that allows the sort key to be computed asynchronously.
sortWithKey<K extends Comparable<Object>>(K key(E)) → void

Available on List<E>, provided by the SortWithKeyExtension extension

Sorts this List according to the computed sort key.