operator <= method

bool operator <=(
  1. dynamic o
)

Determines whether the left-hand Version represents an equal or lower precedence than the right-hand Version.

Implementation

bool operator <=(dynamic o) => o is Version && _compare(this, o) <= 0;