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