operator / method

SizeUnit operator /(
  1. SizeUnit other
)

Divides one size unit by another.

Implementation

SizeUnit operator /(SizeUnit other) {
  return _CalculatedSize(
    this,
    other,
    calculationDivide,
  );
}