You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Re-implement Drain so it doesn't use vec::Drain.
vec::Drain has to give the elements in the right order and impl Drop to make it work.
BeachMap doesn't guaranty any order so it can be implemented backward and not impl Drop.
Re-implement Drain so it doesn't use vec::Drain.
vec::Drain has to give the elements in the right order and impl Drop to make it work.
BeachMap doesn't guaranty any order so it can be implemented backward and not impl Drop.