LoadCodepoints method

Pointer<Int> LoadCodepoints(
  1. Pointer<Char> text,
  2. Pointer<Int> count
)

Load all codepoints from a UTF-8 text string, codepoints count returned by parameter

Implementation

Pointer<Int> LoadCodepoints(Pointer<Char> text, Pointer<Int> count)
  => _LoadCodepoints(text, count);