hash2 function

int hash2(
  1. Object a,
  2. Object b
)

Generates a hash code for two objects.

Implementation

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