operator - method

PositionUnit operator -(
  1. PositionUnit other
)

Subtracts one position unit from another.

Implementation

PositionUnit operator -(PositionUnit other) {
  return PositionCalculated(
    this,
    other,
    calculationSubtract,
  );
}