hash3 function

int hash3 (dynamic a, dynamic b, dynamic c)

Generates a hash code for three objects.

Implementation

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