hash2 function

int hash2 (dynamic a, dynamic b)

Generates a hash code for two objects.

Implementation

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