complementChar method

void complementChar(
  1. Rune ch
)

Complement a single character to the set

(Characters which are in this set are removed and vice versa)

See the Rust documentation for complement_char for more information.

Implementation

void complementChar(Rune ch) {
  _icu4x_CodePointSetBuilder_complement_char_mv1(_ffi, ch);
}