Flowdock
method

readline

Importance_0
readline() private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rexml/source.rb, line 257
    def readline
      str = @source.readline(@line_break)
      return nil if str.nil?

      if @to_utf
        decode(str)
      else
        str.force_encoding(::Encoding::UTF_8) if @force_utf8
        str
      end
    end
Register or log in to add new notes.