hashObjects function

int hashObjects(
  1. Iterable<Object> objects
)

Generates a hash code for multiple objects.

Implementation

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