module IniParse::LineCollection

def <<(line)


collection, the old item will be replaced.
Note that if you pass a line with a key already represented in the

Appends a line to the collection.
def <<(line)
  line.blank? ? (@lines << line) : (self[line.key] = line) ; self
end