operator < method

bool operator <(
  1. Vector<T> other
)

Less-than comparison for vectors.

Implementation

bool operator <(Vector<T> other) => compareTo(other) < 0;