ARGF.each(sep=$/) {|line| block } â ARGFARGF.each(sep=$/,limit) {|line| block } â ARGFARGF.each(...) â an_enumeratorARGF.each_line(sep=$/) {|line| block } â ARGFARGF.each_line(sep=$/,limit) {|line| block } â ARGFARGF.each_line(...) â an_enumerator
Instance Public methods
Returns an enumerator which iterates over each line (separated by
sep, which defaults to your platform's newline character) of
each