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
Per-crate cache maps keyed on DefIndex may be more efficient and/or allow us to use Vec for queries keyed on DefId instead of HashMap.
We can use specialization (e.g. for splitting (DefId, T) into CrateNum and (DefIndex, T)), I think.