addInclusiveRange method

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

Add an inclusive range of characters to the set

See the Rust documentation for add_range for more information.

Implementation

void addInclusiveRange(Rune start, Rune end) {
  _icu4x_CodePointSetBuilder_add_inclusive_range_mv1(_ffi, start, end);
}