operator - method

SlotTimeUnit operator -(
  1. int other
)

Subtracts other from this SlotTimeUnit and returns the resulting SlotTimeUnit.

Implementation

SlotTimeUnit operator -(int other) {
  return this + (-other);
}