hash3 function

int hash3(
  1. Object a,
  2. Object b,
  3. Object c
)

Generates a hash code for three objects.

Implementation

int hash3(Object a, Object b, Object c) => _finish(
    _combine(_combine(_combine(0, a.hashCode), b.hashCode), c.hashCode));