hashObjects static method

int hashObjects(
  1. Iterable objects
)

Generates a hash code for multiple objects.

Implementation

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