compose method

Rune compose(
  1. Rune starter,
  2. Rune second
)

Performs canonical composition (including Hangul) on a pair of characters or returns NUL if these characters don’t compose. Composition exclusions are taken into account.

See the Rust documentation for compose for more information.

Implementation

Rune compose(Rune starter, Rune second) {
  final result = _icu4x_CanonicalComposition_compose_mv1(_ffi, starter, second);
  return result;
}