graphemes function

Iterable<String> graphemes(
  1. String s
)

Returns a lazy grapheme-cluster iterable.

Implementation

Iterable<String> graphemes(String s) => s.characters;