operator <= method

bool operator <=(
  1. num other
)
inherited

Relational less than or equal operator.

Implementation

bool operator <=(num other) => value <= other;