diff --git a/README.md b/README.md index 205223e..f7193d9 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,17 @@ This repository should be construed as an independent work, with no guarantees o # Work in progress - please do not use yet - should be ready before the end of March 2019 This repository aims to provide an set of excellent hash map implementations, with the following charecteristics: + - **header only**: nothing to build, just copy the `parallel_hashmap` directory to your project and you are good to go. + - compiler with **C++11 support** required, **C++14 and C++17 APIs are provided** + - **Very efficient**, significantly faster than your compiler's unordered map/set or Boost's, or than [sparsepp](https://github.com/greg7mdp/sparsepp) + - **Memory friendly**: low memory usage, although higher that [sparsepp](https://github.com/greg7mdp/sparsepp) + - support heterogeneous lookup + - Not yet **Tested** ~~on Windows (vs2010-2015, g++), linux (g++, clang++) and MacOS (clang++)~~.