operator <= method

bool operator <=(
  1. ByteSize bs
)

Returns if current ByteSize instance is less than or equals another.

Implementation

bool operator <=(ByteSize bs) => Bits <= bs.Bits;