summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-06-22 21:20:00 +0200
committerGitHub <[email protected]>2020-06-22 21:20:00 +0200
commit23e4aa6a3d3abe83600300660b9b5b30489cae6d (patch)
treefdd50ae4ea942d9183b39a7a9a4ebd50b195afce
parentb46e55a30c0750b7dccecda8bd13b765501ccd1d (diff)
downloadSTC-modified-23e4aa6a3d3abe83600300660b9b5b30489cae6d.tar.gz
STC-modified-23e4aa6a3d3abe83600300660b9b5b30489cae6d.zip
Update README.md
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 9ea88dd9..c35a8c81 100644
--- a/README.md
+++ b/README.md
@@ -99,7 +99,7 @@ The containers are memory efficent, i.e. they occupy as little memory as practic
CHash and CVector discussion
----------------------------
-**CHash** is the most complex of the containers (although, currently only ~370 lines of code). It uses open hashing, but does not rely on power-of-two size table, nor prime number lengths, and it does not have tombstone buckets. Still, it is among the fastest hash-tables - see *Performance* below.
+**CHash** is the most complex of the containers (although, currently only ~370 lines of code). It uses open hashing, but does not rely on power-of-two size table, nor prime number lengths, and it does not have tombstone buckets. Still, it is among the fastest hash-tables, as shown above.
You may customize the destroy-, hash- and equals- function. It also supports a few other arguments in the declare-statement that allows to define a convertion from a raw/literal type to the key-type specified. This is handy when e.g. having CString as key, as it enables the usage of string literals as key in *put() and *get() functions, instead of requering a constructed CString. Without it you would need to write:
```