GetCodepointNext method

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

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

Implementation

int GetCodepointNext(Pointer<Char> text, Pointer<Int> codepointSize)
  => _GetCodepointNext(text, codepointSize);