Method: Ruby::ArgsList#<<

Defined in:
lib/ruby/args.rb

#<<(arg) ⇒ Object



14
15
16
17
# File 'lib/ruby/args.rb', line 14

def <<(arg)
  arg = Ruby::Arg.new(arg) unless arg.is_a?(Ruby::Arg)
  super
end