class Hash

Public Instance Methods

lookup(key, err_notfound="%s not found\n", err_ambig="%s is ambiguous\n") click to toggle source
# File lib/lookup.rb, line 68
def lookup key, err_notfound="%s not found\n", err_ambig="%s is ambiguous\n"
  self.keys.lookup(key, err_notfound, err_ambig)
end