We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
split("") → each_char — Use `each_char` instead of `split("")` to iterate over characters without allocating an array.
str.split("").each { |c| ... }
There was an error while loading. Please reload this page.