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
Changed keys of future's ConcurrentDictionary from IntPtr to long, to prevent unecessary boxing.
- EqualityComparer<IntPtr>.Default returns an ObjectEqualityComparer<IntPtr> which causes boxing
- EqualityComparer<long>.Default returns an GenericEqualityComparer<long> which does not
0 commit comments