mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 17:26:18 +01:00
3 lines
117 B
Dart
3 lines
117 B
Dart
extension ListExtension<T> on List<T> {
|
|
Iterable<T> takeIndex(List<int> indexes) => indexes.map((e) => this[e]);
|
|
}
|