class Hamster::Vector

def new_root

def new_root
  if full?
    @levels += 1
    @root = [@root]
  else
    @root = @root.dup
  end
end