summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-06-22 21:14:03 +0200
committerGitHub <[email protected]>2020-06-22 21:14:03 +0200
commitb46e55a30c0750b7dccecda8bd13b765501ccd1d (patch)
tree92994d78d286b4b06d1e01a8301586f9efadfe0a
parenta96c522ba87632b9bed2777e9cf7f9666757012c (diff)
downloadSTC-modified-b46e55a30c0750b7dccecda8bd13b765501ccd1d.tar.gz
STC-modified-b46e55a30c0750b7dccecda8bd13b765501ccd1d.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 ef3a0b92..9ea88dd9 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ Introduction
An elegant, typesafe, generic, customizable, user-friendly, consistent, 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.
+- **cvector.h** - Dynamic generic **vector** class, works well as a **stack**.
- **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 *pushBack, pushFront, and popFront* in *O*(1). Also contains various *splice* functions and (merge) *sort*.