module Hamster::List

def hash

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