Generates a hash code for three objects.
int hash3(Object a, Object b, Object c) => _finish( _combine(_combine(_combine(0, a.hashCode), b.hashCode), c.hashCode));