Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/lookup.rb

Instance Method Summary collapse

Instance Method Details

#lookup(key, err_notfound = "%s not found\n", err_ambig = "%s is ambiguous\n") ⇒ Object



62
63
64
# File 'lib/lookup.rb', line 62

def lookup key, err_notfound="%s not found\n", err_ambig="%s is ambiguous\n"
  key_lookup self, key, err_notfound, err_ambig
end