class OptionParser::CompletingHash
Hash
with completion search feature. See OptionParser::Completion
.
Public Instance Methods
# File lib/optparse.rb, line 932 def match(key) *values = fetch(key) { raise AmbiguousArgument, catch(:ambiguous) {return complete(key)} } return key, *values end
Completion
for hash key.
Ruby Core © 1993–2020 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.