summaryrefslogtreecommitdiffhomepage
path: root/docs/csset_api.md
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2021-01-17 12:27:21 +0100
committerTyge Løvset <[email protected]>2021-01-17 12:27:21 +0100
commit7acf9651556a5a42023f61dda8cbdd0c406aaaed (patch)
tree48b813fc1853815c8eda5ce746eaee761f8b7efe /docs/csset_api.md
parent468b3563369468c8c5a5e17738de783bace34ccc (diff)
downloadSTC-modified-7acf9651556a5a42023f61dda8cbdd0c406aaaed.tar.gz
STC-modified-7acf9651556a5a42023f61dda8cbdd0c406aaaed.zip
Fixed some csmap/csset docs issues.
Diffstat (limited to 'docs/csset_api.md')
-rw-r--r--docs/csset_api.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/csset_api.md b/docs/csset_api.md
index b7f9884b..27a744f3 100644
--- a/docs/csset_api.md
+++ b/docs/csset_api.md
@@ -1,4 +1,4 @@
-# STC Container [csset](../stc/cmap.h): Unordered Set
+# STC Container [csset](../stc/csmap.h): Sorted Set
![Set](pics/sset.jpg)
A **csset** is an associative container that contains a sorted set of unique objects of type *Key*. Sorting is done using the key comparison function *keyCompare*. Search, removal, and insertion operations have logarithmic complexity. **csset** is implemented as a AA-tree. See [std::set](https://en.cppreference.com/w/cpp/container/set) for a similar c++ class.