operator <= method

bool operator <=(
  1. Version other
)

Returns true if this version is less than or equal to other.

Implementation

bool operator <=(Version other) => compareTo(other) <= 0;