operator >= method

bool operator >=(
  1. SemanticVersion other
)
inherited

Implementation

bool operator >=(T other) {
  return compareTo(other) >= 0;
}