CryptoRAT (Luke Elliot)
- Login: CryptoRAT
- Registered on: 06/12/2020
- Last sign in: 06/12/2020
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
06/12/2020
-
03:55 PM Ruby Bug #16957 (Closed): Documentation example for enum.chunk doesn't match actual output.
- I was experimenting with chunk, ruby 2.7.1, using the documentation sample, also 2.7.1:
``` ruby
open("/usr/share/dict/words", "r:iso-8859-1") { |f|
f.chunk { |line| line.ord }.each { |ch, lines| p [ch.chr, lines.length] }
}
#=>...