GetCodepoint method

int GetCodepoint(
  1. Pointer<Char> text,
  2. Pointer<Int> codepointSize
)

Get next codepoint in a UTF-8 encoded string, 0x3f('?') is returned on failure

Implementation

int GetCodepoint(Pointer<Char> text, Pointer<Int> codepointSize)
  => _GetCodepoint(text, codepointSize);