concatenateEnd method

bool concatenateEnd(
  1. Decimal other
)

Concatenates other to the end of self.

If successful, other will be set to 0 and a successful status is returned.

If not successful, other will be unchanged and an error is returned.

See the Rust documentation for concatenate_end for more information.

Implementation

bool concatenateEnd(Decimal other) {
  final result = _icu4x_Decimal_concatenate_end_mv1(_ffi, other._ffi);
  return result.isOk;
}