Commits

Daniel Duan committed b177c69d6b1
skip copying old values during removeAll() As noted in FIXME(performance), calling `.removeAll(keepCapacity: true)` on a containter of type Dictionay or Set causes a copy of its storage being made. Only then, it would proceed to delete each element. This patch makes these hashed collections skip the wasteful copying step.