summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-06-22 15:15:46 +0200
committerGitHub <[email protected]>2020-06-22 15:15:46 +0200
commit90c2f70ec988d7a28bf524d06f00fc98f6309052 (patch)
treedb5652b8e20d99f49b934368487696322f93f5f6
parent8f43c2cd09525d76e89158a36336bef6b9d0720a (diff)
downloadSTC-modified-90c2f70ec988d7a28bf524d06f00fc98f6309052.tar.gz
STC-modified-90c2f70ec988d7a28bf524d06f00fc98f6309052.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 ee16b9ee..22478132 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ Introduction
An elegant, modern, generic, customizable, typesafe, consistent, user-friendly, and very efficient standard container library for C99. This is a small headers only library with the most used container components, and a few algorithms:
- **cstring.h** - Compact and powerful **string** class.
- **cvector.h** - Dynamic generic **vector** class.
-- **chash.h** - Unordered **map** and **set**. Highly customizable and fast.
+- **chash.h** - Unordered **map** and **set** implemented as open hashing without tombstones. Highly customizable and fast.
- **carray.h** - Multi-dimensional dynamic **array**, implemented as a single contiguous section of memory.
- **clist.h** - A circular singly linked **list**, can be used as a **queue** (supports O(1) *pushBack, pushFront, and popFront*). Also contains various *splice* functions and (merge) *sorting*.
- **coption.h** - Implementation of *getopt_long*-"like" function, *coption_get*, to parse command line arguments.