pushFrontAll method
Push many to the front (no sort)
Implementation
void pushFrontAll(Iterable<BaseNarrativeModel> items) {
for (final item in items.toList().reversed) {
_queue.addFirst(item);
}
_isSorted = false;
}
Push many to the front (no sort)
void pushFrontAll(Iterable<BaseNarrativeModel> items) {
for (final item in items.toList().reversed) {
_queue.addFirst(item);
}
_isSorted = false;
}