complementSet method

void complementSet(
  1. CodePointSetData data
)

Complement all elements that belong to the provided set from the set

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

See the Rust documentation for complement_set for more information.

Implementation

void complementSet(CodePointSetData data) {
  _icu4x_CodePointSetBuilder_complement_set_mv1(_ffi, data._ffi);
}