summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-11-27 23:22:36 +0100
committerGitHub <[email protected]>2020-11-27 23:22:36 +0100
commit542850bce293a0bb5f9bbbf003ef830412e10718 (patch)
treeb0b308886bf78a374c4eea867c021fa4b177a8b0
parent4cfa4e8640bd5fd736d5989f70c48c42b6450322 (diff)
downloadSTC-modified-542850bce293a0bb5f9bbbf003ef830412e10718.tar.gz
STC-modified-542850bce293a0bb5f9bbbf003ef830412e10718.zip
Update README.md
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0c347f13..38f86632 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ An elegant, fully typesafe, generic, customizable, user-friendly, consistent, an
- [**cbitset** - A ***bitset*** - *std::bitset*- or *boost::dynamic_bitset*-like](docs/cbitset_api.md)
- [**clist** - Generic circular ***singly linked List*** type](docs/clist_api.md). Can be used as a *queue* as it supports *push_back(), push_front(), and pop_front()*. Supports various *splice* functions and *merge sort*.
- [**cmap** - Generic fast ***unordered map/set*** types](docs/cstr_api.md) Implemented as open hashing without tombstones. Highly customizable and fast.
-- [**cstr** - Powerful and compact **string** type](docs/cstr_api.md)
+- [**cstr** - Powerful and compact ***string*** type](docs/cstr_api.md)
- [**cvec** - Dynamic generic ***vector*** type](docs/cvec_api.md)
- [**cstack** - A ***stack*** adapter type](docs/cstack_api.md)
- [**cqueue** - A ***queue*** adapter type](docs/cqueue_api.md)
@@ -17,7 +17,7 @@ An elegant, fully typesafe, generic, customizable, user-friendly, consistent, an
- [**cptr** - Support for pointers and shared pointers in containers](docs/cptr_api.md)
- [**coption** - Implements *coption_get()*, a ***getopt_long***-like function](docs/coption_api.md), for command line argument parsing.
- [**crandom** - A few very efficent modern ***random number generators***](docs/crandom_api.md) *pcg32* and my own *64-bit PRNG* inspired by *sfc64*, with uniform and normal distributions.
-- [**ccommon** - A common include file with a few general definitions](docs/ccommon_api.md)
+- [**ccommon** - Collection of general definitions](docs/ccommon_api.md)
The usage of the containers is quite similar to the C++ standard containers, so it should be easy if you are familiar with them.