method

set_option

set_option(opt, eq)
public

No documentation available.

# File lib/optparse.rb, line 1756
    def set_option(opt, eq)
      if eq
        @args[0] = opt
      else
        @args.unshift(opt)
      end
      self
    end