hashObjects function Null safety
- Iterable objects
Generates a hash code for multiple objects
.
Implementation
int hashObjects(Iterable objects) =>
_finish(objects.fold(0, (h, i) => _combine(h, i.hashCode)));
Generates a hash code for multiple objects
.
int hashObjects(Iterable objects) =>
_finish(objects.fold(0, (h, i) => _combine(h, i.hashCode)));