ARGF.lineno = integer â integer
Instance Public methods
Sets the line number of ARGF
as a whole to the given
Integer
.
ARGF
sets the line number automatically as you read data, so
normally you will not need to set it explicitly. To access the current line
number use ARGF.lineno
.
For example:
ARGF.lineno #=> 0 ARGF.readline #=> "This is line 1\n" ARGF.lineno #=> 1 ARGF.lineno = 0 #=> 0 ARGF.lineno #=> 0
Please login to continue.