operator - method

SpacingUnit operator -(
  1. SpacingUnit other
)

Subtracts one spacing unit from another.

Implementation

SpacingUnit operator -(SpacingUnit other) {
  return _CalculatedSpacing(
    this,
    other,
    calculationSubtract,
  );
}