class Rubinius::Tuple

Public Instance Methods

copy_from(other, start, length, dest) click to toggle source
# File lib/rubinius/bridge/tuple.rb, line 3
def copy_from(other, start, length, dest)
  length.times do |i|
    self[dest + i] = other[start + i]
  end
end