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
I'm trying to use ordermap to fix the non-determinism in rustbuild in a useful (order-preserving) way, and I had to replace .values() with .iter().map(|(_, r)| r) - it's close, but not a drop-in replacement.
The text was updated successfully, but these errors were encountered:
Ok, values and values_mut should definitely be added so that it's a drop in. As noted somewhere, std HashMap's Entry has two type parameters and ours has three, which is a not yet fixed discrepancy
I'm trying to use
ordermap
to fix the non-determinism in rustbuild in a useful (order-preserving) way, and I had to replace.values()
with.iter().map(|(_, r)| r)
- it's close, but not a drop-in replacement.The text was updated successfully, but these errors were encountered: