module IniParse::LineCollection

def to_hash

lines.
Returns this collection as a hash. Does not contain blank and comment
def to_hash
  Hash[ *(map { |line| [line.key, line] }).flatten ]
end