retainSet method

void retainSet(
  1. CodePointSetData data
)

Removes all elements from the set except all elements in the provided set

See the Rust documentation for retain_set for more information.

Implementation

void retainSet(CodePointSetData data) {
  _icu4x_CodePointSetBuilder_retain_set_mv1(_ffi, data._ffi);
}