nc-photos/app/lib/list_extension.dart

24 lines
571 B
Dart
Raw Normal View History

2022-01-01 18:25:50 +01:00
import 'dart:math' as math;
2021-04-10 06:28:12 +02:00
extension ListExtension<T> on List<T> {
Iterable<T> takeIndex(List<int> indexes) => indexes.map((e) => this[e]);
2022-01-01 18:25:50 +01:00
List<T> slice(int start, [int? stop]) {
if (start < 0) {
start = math.max(length + start, 0);
}
if (stop != null && stop < 0) {
stop = math.max(length + stop, 0);
}
if (start >= length) {
return [];
} else if (stop == null) {
return sublist(start);
} else if (start >= stop) {
return [];
} else {
return sublist(start, math.min(stop, length));
}
}
2021-04-10 06:28:12 +02:00
}