Chaining double-splats in Ruby

48 Views Asked by At

Is the following behavior a bug or a feature?

class A
  def initialize(**options)
    @options = options
  end

  def foo(**options)
    bar(**@options, **options)
  end

  def bar(**options)
  end

  def print
    puts @options.inspect
  end
end

a = A.new(one: 1)
a.print # {:one=>1}

a.foo(two: 2)
a.print # {:one=>1, :two=>2}

Obtained using:

$ ruby -v
ruby 2.1.2p95 (2014-05-08 revision 45877) [x86_64-darwin13.0]

If a feature, where one can read about it? Thank you!

Regards, Ivan

0

There are 0 best solutions below