VOOZH about

URL: https://apidock.com/ruby/String/grapheme_clusters

⇱ String#grapheme_clusters - APIdock


method

grapheme_clusters

ruby latest stable - Class: String
grapheme_clusters()
public

Returns an array of grapheme clusters in str. This is a shorthand for str.each_grapheme_cluster.to_a.

If a block is given, which is a deprecated form, works the same as each_grapheme_cluster.

static VALUE
rb_str_grapheme_clusters(VALUE str)
{
 VALUE ary = WANTARRAY("grapheme_clusters", rb_str_strlen(str));
 return rb_str_enumerate_grapheme_clusters(str, ary);
}

Related methods