Feature #9515
`IO.each` and `CSV.each`
Status:
Open
Priority:
Normal
Assignee:
-
Target version:
-
Description
In IO
class, there are pairs of a class method and an instance method with related function:
IO.read
andIO#read
IO.write
andIO#write
IO.foreach
andIO#each
(or its aliasIO#each_line
)
For consistency, please make IO.each
an alias for IO.foreach
.
The same thing can be said for CSV.each
.
Updated by sawa (Tsuyoshi Sawada) about 1 year ago
- Description updated (diff)
- Subject changed from IO.each (and perhaps CSV.each) to `IO.each` and `CSV.each`