lessThan method

bool lessThan(
  1. Vector other
)

Implementation

bool lessThan(Vector other) {
  return _sumSqrs() < other._sumSqrs();
}