class OptionParser::CompletingHash
Hash
with completion search feature. See OptionParser::Completion
.
Public Instance Methods
Source
# File lib/optparse.rb, line 1000 def match(key) *values = fetch(key) { raise AmbiguousArgument, catch(:ambiguous) {return complete(key)} } return key, *values end
Completion
for hash key.