operator - method

Priority operator -(
  1. int offset
)

Returns a priority relative to this priority.

A positive offset indicates a lower priority.

The parameter offset is clamped to ±kMaxOffset.

Implementation

Priority operator -(int offset) => this + (-offset);