retainInclusiveRange method

void retainInclusiveRange(
  1. Rune start,
  2. Rune end
)

Removes all elements from the set except an inclusive range of characters f

See the Rust documentation for retain_range for more information.

Implementation

void retainInclusiveRange(Rune start, Rune end) {
  _icu4x_CodePointSetBuilder_retain_inclusive_range_mv1(_ffi, start, end);
}