void addAll(Iterable<int> arr) { final oldLength = _set.length; _set.addAll(arr); if (_set.length != oldLength) { _cachedHashCode = null; } }