-module(mumu). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]). -export([hash_with_seed/2, hash/1]). -spec hash_with_seed(binary(), integer()) -> integer(). hash_with_seed(Input, Seed) -> erlang_murmurhash:murmurhash3_32(Input, Seed). -spec hash(binary()) -> integer(). hash(Input) -> erlang_murmurhash:murmurhash3_32(Input, 0).