Hash with completion search feature. See OptionParser::Completion.
Completion for hash key.
[Source]
# File lib/optparse.rb, line 663 663: def match(key) 664: return key, *fetch(key) { 665: raise AmbiguousArgument, catch(:ambiguous) {return complete(key)} 666: } 667: end
[Validate]