OptionParser::Switch::CompletingHash (Class)

In: optparse.rb
Parent: Hash

Methods

match  

Included Modules

Completion

Public Instance methods

[Source]

# File optparse.rb, line 678
    def match(key)
      return key, *fetch(key) {
        raise AmbiguousArgument, catch(:ambiguous) {return complete(key)}
      }
    end

[Validate]