operator < method

bool operator <(
  1. BinarySize other
)

Whether this bytesCount is strictly less than other's.

Implementation

bool operator <(BinarySize other) => bytesCount < other.bytesCount;