pushBackAll method
Push many to the end (no sort)
Implementation
void pushBackAll(Iterable<BaseNarrativeModel> items) {
_queue.addAll(items);
_isSorted = false;
}
Push many to the end (no sort)
void pushBackAll(Iterable<BaseNarrativeModel> items) {
_queue.addAll(items);
_isSorted = false;
}