operator <= method

bool operator <=(
  1. Temperature other
)

Returns true if this is smaller than or equal to the other Temperature.

Implementation

bool operator <=(final Temperature other) => asKelvin <= other.asKelvin;