class Array
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 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