addDecimalFixedPoint function
Adds two decimal fixed-point values of the same shape.
Implementation
DecimalFixedPoint addDecimalFixedPoint(
DecimalFixedPoint a,
DecimalFixedPoint b,
) {
return a + b;
}
Adds two decimal fixed-point values of the same shape.
DecimalFixedPoint addDecimalFixedPoint(
DecimalFixedPoint a,
DecimalFixedPoint b,
) {
return a + b;
}