Ruby 2.4

OptionParser::Switch::OptionalArgument

class OptionParser::Switch::OptionalArgument

父类:self

可以省略参数的开关。

公共实例方法

parse(arg, argv, &error) Show source

如果给定,则分析参数或使用默认值。

# File lib/optparse.rb, line 687 def parse(arg, argv, &error) if arg conv_arg(*parse_arg(arg, &error)) else conv_arg(arg) end end