operator >= method

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

Whether other index is numerically greater than or equal to this number.

If either operand is the double NaN, the result is always false.

Implementation

bool operator >=(LicenseDescriptor<T> other) => index >= other.index;