aboutsummaryrefslogtreecommitdiff
path: root/libraries/robin-map/README
diff options
context:
space:
mode:
authorChristoph Willing <chris.willing@linux.com>2019-08-10 06:46:42 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2019-08-10 06:46:42 +0700
commitf40cbbf3f1712bbd999a023d3d74fcb251a9cccf (patch)
tree6bea01ba1d1c6a5e1258d2b4641a9a1300dc11df /libraries/robin-map/README
parentd8d06f26f863f26356b5d1148343b48a20fe7d04 (diff)
libraries/robin-map: Added (C++ fast hash map).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/robin-map/README')
-rw-r--r--libraries/robin-map/README3
1 files changed, 3 insertions, 0 deletions
diff --git a/libraries/robin-map/README b/libraries/robin-map/README
new file mode 100644
index 0000000000000..724f3decf3e25
--- /dev/null
+++ b/libraries/robin-map/README
@@ -0,0 +1,3 @@
+The robin-map library is a C++ implementation of a fast hash map and hash set
+using open-addressing and linear robin hood hashing with backward shift deletion
+to resolve collisions.