multiplyPow10 method

void multiplyPow10(
  1. int power
)

Multiply the Decimal by a given power of ten.

See the Rust documentation for multiply_pow10 for more information.

Implementation

void multiplyPow10(int power) {
  _icu4x_Decimal_multiply_pow10_mv1(_ffi, power);
}