diff options
Diffstat (limited to 'doc/string/each_codepoint.rdoc')
| -rw-r--r-- | doc/string/each_codepoint.rdoc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/string/each_codepoint.rdoc b/doc/string/each_codepoint.rdoc new file mode 100644 index 0000000000..8e4e7545e6 --- /dev/null +++ b/doc/string/each_codepoint.rdoc @@ -0,0 +1,18 @@ +With a block given, calls the block with each successive codepoint from +self+; +each {codepoint}[https://en.wikipedia.org/wiki/Code_point] is the integer value for a character; +returns +self+: + + a = [] + 'hello'.each_codepoint do |codepoint| + a.push(codepoint) + end + a # => [104, 101, 108, 108, 111] + a = [] + 'こんにちは'.each_codepoint do |codepoint| + a.push(codepoint) + end + a # => [12371, 12435, 12395, 12385, 12399] + +With no block given, returns an enumerator. + +Related: see {Iterating}[rdoc-ref:String@Iterating]. |
