operator <= method

bool operator <=(
  1. Q q
)

Less than or equal operator

Implementation

bool operator <=(Q q) => this < q || this == q;