Closed Herschel closed 4 years ago
retain was iterating over self.len and not self.capacity() causing it not visit entries when there are free slots in the middle of the Vec.
retain
self.len
self.capacity()
retain
was iterating overself.len
and notself.capacity()
causing it not visit entries when there are free slots in the middle of the Vec.