Files
immich/mobile-v2/lib/utils/extensions/iterable.extension.dart
2025-02-26 08:58:19 +05:30

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)));
}