class OptionParser::CompletingHash
Hash mit Vervollständigungsfunktion. Siehe OptionParser::Completion.
Öffentliche Instanzmethoden
Source
# File lib/optparse.rb, line 1005 def match(key) *values = fetch(key) { raise AmbiguousArgument, catch(:ambiguous) {return complete(key)} } return key, *values end
Completion für Hash-Schlüssel.