hashObjects function

int hashObjects (Iterable<Object> objects)

Generates a hash code for multiple objects.

Implementation

int hashObjects(Iterable<Object> objects) =>
    _finish(objects.fold<int>(0, (int h, Object i) => _combine(h, i.hashCode)));