Hasher<T> typedef

int Hasher (
  1. T value
)

Takes an element of type T and computes its hash code, returning the code's integer value.

Implementation

typedef Hasher<T> = int Function(T value);