operator < method

bool operator <(
  1. Version other
)

Returns true if this version is less than other.

Implementation

bool operator <(Version other) => !(this > other) && this != other;