class OptionParser::CompletingHash
具有补全搜索功能的 Hash。请参考 OptionParser::Completion
。
公共实例方法
match(key) 点击切换源代码
用于哈希键的 Completion
。
# File optparse.rb, line 1000 def match(key) *values = fetch(key) { raise AmbiguousArgument, catch(:ambiguous) {return complete(key)} } return key, *values end