GetCodepointCount method

int GetCodepointCount(
  1. Pointer<Char> text
)

Get total number of codepoints in a UTF-8 encoded string

Implementation

int GetCodepointCount(Pointer<Char> text)
  => _GetCodepointCount(text);