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 #638 from kachick/implement-string-each_byte
Implement String#each_byte, String#bytes
- Loading branch information
Showing
with
14 additions
and 3 deletions.
@@ -1,4 +1 @@ | ||
fails:String#each_byte passes each byte in self to the given block | ||
fails:String#each_byte keeps iterating from the old position (to new string end) when self changes | ||
fails:String#each_byte returns self | ||
fails:String#each_byte returns an enumerator when no block given |