operator >= method

bool operator >=(
  1. SodiumVersion other
)

Checks if this version is greater or equal than other.

Implementation

bool operator >=(SodiumVersion other) => (this == other) || (this > other);