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