operator / method

SpacingUnit operator /(
  1. SpacingUnit other
)

Divides one spacing unit by another.

Implementation

SpacingUnit operator /(SpacingUnit other) {
  return _CalculatedSpacing(
    this,
    other,
    calculationDivide,
  );
}