class Hamster::Vector

def +(other)

Returns:
  • (Vector) -

Parameters:
  • other (Enumerable) -- The collection to concatenate onto this vector
def +(other)
  other = other.to_a
  other = other.dup if other.frozen?
  replace_suffix(@size, other)
end