pushBack method

void pushBack(
  1. BaseNarrativeModel item
)

Push a sentence to the end (no sort)

Implementation

void pushBack(BaseNarrativeModel item) {
  _queue.addLast(item);
  _isSorted = false;
}