operator - method

SizeUnit operator -(
  1. SizeUnit other
)

Subtracts one size unit from another.

Implementation

SizeUnit operator -(SizeUnit other) {
  return _CalculatedSize(
    this,
    other,
    calculationSubtract,
  );
}