GetCodepointCount method

int GetCodepointCount(
  1. String text
)

Implementation

int GetCodepointCount(
  String text,
) => run(
  () => 'GetCodepointCount($text)',
  () => rl.Core.GetCodepointCount(
    rl.Temp.String$.ValueOrNull(text),
  ),
);