# File lib/racc/iset.rb, line 38 def update(other) s = @set o = other.set o.each_index do |idx| if t = o[idx] s[idx] = t end end end