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
Transform GroupingMap[By] into GroupingGenericMap[By]
This is a huge but quite straightforward transformation:
- `GroupingMap[By]` becomes `GroupingGenericMap[By]` with a generic type `M`
- `K: Hash` becomes `M: Map<Key = K>`
- `HashMap<K, ...>` becomes `M` with a `M: Map<Value = ...>` bound
- Remove `Hash` and `HashMap`
- `use_std` becomes `use_alloc`
0 commit comments