class OptionParser::CompletingHash

Parent:
Hash
Included modules:
OptionParser::Completion

Hash with completion search feature. See OptionParser::Completion.

Public Instance Methods

match(key) Show source
# File lib/optparse.rb, line 899
def match(key)
  *values = fetch(key) {
    raise AmbiguousArgument, catch(:ambiguous) {return complete(key)}
  }
  return key, *values
end

Completion for hash key.

Ruby Core © 1993–2017 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.