add method

void add(
  1. T element
)

Implementation

void add(T element) {
  _elements.add(element);
  _elements.sort(_comparator);
}