在github API v3中找到了一个方法定义,不知道是什么意思args=(not_set = true)
。
你能告诉我一些用法的例子吗?谢谢。
# Acts as setter and getter for api requests arguments parsing.
#
# Returns Arguments instance.
#
def arguments(args=(not_set = true), options={}, &block)
if not_set
@arguments
else
@arguments = Arguments.new(self, options).parse(*args, &block)
end
end