module IniParse::LineCollection

def [](key)

Retrive a value identified by +key+.
def [](key)
  has_key?(key) ? @lines[ @indicies[key] ] : nil
end