class Hamster::Vector

def hash

Returns:
  • (Integer) -
def hash
  reduce(0) { |hash, item| (hash << 5) - hash + item.hash }
end