Wsm2110 / Faster.Map

Faster.Map is a high-performance, thread-safe key-value store designed to outperform the standard Dictionary and ConcurrentDictionary
MIT License
75 stars 7 forks source link

Amend code to make it cross platform #24

Closed miroslavp closed 1 year ago

miroslavp commented 1 year ago

Replaced SSE2 method calls CompareEqual and MoveMask with the platform independent alternatives Vector128.Equal and Vector128.ExtractMostSignificantBits

Wsm2110 commented 1 year ago

well done mate.