operator <= method

bool operator <=(
  1. SodiumVersion other
)

Checks if this version is less or equal than other.

Implementation

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