Source
void forEachItem(Function fn) { CollectionChangeRecord record; for (record = this._itHead; !identical(record, null); record = record._next) { fn(record); } }
void forEachItem(Function fn) { CollectionChangeRecord record; for (record = this._itHead; !identical(record, null); record = record._next) { fn(record); } }