LoadUTF8 method

Pointer<Char> LoadUTF8(
  1. Pointer<Int> codepoints,
  2. int length
)

Load UTF-8 text encoded from codepoints array

Implementation

Pointer<Char> LoadUTF8(Pointer<Int> codepoints, int length)
  => _LoadUTF8(codepoints, length);