GetCodepointCount method
Get total number of codepoints in a UTF-8 encoded string
Implementation
@override
int GetCodepointCount(
String text,
) => run(
() => RaylibDebugLabels.GetCodepointCount(text),
() => rl.Core.GetCodepointCount(
rl.Temp.String$.ValueOrNull(text),
),
);