Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #593 from kachick/implement-string-each_char
Implement String#each_char, String#chars
- Loading branch information
Showing
with
14 additions
and 6 deletions.
@@ -1,4 +1 @@ | ||
fails:String#chars passes each char in self to the given block | ||
fails:String#chars returns self | ||
fails:String#chars is unicode aware | ||
fails:String#chars returns an enumerator when no block given |
@@ -1,4 +1 @@ | ||
fails:String#each_char passes each char in self to the given block | ||
fails:String#each_char returns self | ||
fails:String#each_char is unicode aware | ||
fails:String#each_char returns an enumerator when no block given |