rest?()
Instance Public methods
Returns true iff there is more data in the string. See eos?. This method is obsolete; use eos? instead.
s = StringScanner.new('test string')
s.eos? # These two
s.rest? # are opposites.
Please login to continue.