addDecimalFixedPoint function

Adds two decimal fixed-point values of the same shape.

Implementation

DecimalFixedPoint addDecimalFixedPoint(
  DecimalFixedPoint a,
  DecimalFixedPoint b,
) {
  return a + b;
}