mirror of
https://github.com/immich-app/immich.git
synced 2026-02-12 11:58:15 +03:00
5 lines
164 B
Dart
5 lines
164 B
Dart
extension SortIterable<T> on Iterable<T> {
|
|
Iterable<T> sortedBy(Comparable Function(T k) key) =>
|
|
List.of(this)..sort((a, b) => key(a).compareTo(key(b)));
|
|
}
|