operator [] method

int operator [](
  1. Rune cp
)

Gets the value for a code point.

See the Rust documentation for get for more information.

Implementation

int operator [](Rune cp) {
  final result = _icu4x_CodePointMapData8_get_mv1(_ffi, cp);
  return result;
}