Determines whether the left-hand Version represents an equal or greater precedence than the right-hand Version.
bool operator >=(dynamic o) => o is Version && _compare(this, o) >= 0;