tfpt review “/shelveset:RhsArg;REDMOND\tomat”
Implements block dispatch for R(N, *, =) case, i.e. N arguments, a
splat argument and a right hand side of assignment are passed to a
block.
Exxample:
class C
define_method(’[]=’) { |a,b,c| }
end
c = C.new
c[1,*[2]] = 3
Tomas