Make IO#each family without block to return Enumerator

This commit is contained in:
KOBAYASHI Shuji
2019-10-17 20:14:02 +09:00
parent 84db8edade
commit 14870a290d
+4
View File
@@ -303,6 +303,8 @@ class IO
# 15.2.20.5.3
def each(&block)
return to_enum unless block
while line = self.gets
block.call(line)
end
@@ -311,6 +313,8 @@ class IO
# 15.2.20.5.4
def each_byte(&block)
return to_enum(:each_byte) unless block
while char = self.getc
block.call(char)
end