operator + method

SizeUnit operator +(
  1. SizeUnit other
)

Adds two size units together.

Implementation

SizeUnit operator +(SizeUnit other) {
  return _CalculatedSize(
    this,
    other,
    calculationAdd,
  );
}