operator >= method

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

Greater-than-or-equal comparison for vectors.

Implementation

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