summaryrefslogtreecommitdiffhomepage
path: root/docs/csset_api.md
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2021-03-06 10:17:29 +0100
committerTyge Løvset <[email protected]>2021-03-06 10:17:29 +0100
commit7188a160ac084b65de07c26797fd74e29fd8b0b8 (patch)
tree90443fd2a7d049ec39f6c98ab8a8aace38a21ae4 /docs/csset_api.md
parentc84c79691da8dfd0852bf515b69b121754fc3826 (diff)
downloadSTC-modified-7188a160ac084b65de07c26797fd74e29fd8b0b8.tar.gz
STC-modified-7188a160ac084b65de07c26797fd74e29fd8b0b8.zip
Cleanups and internal renames. Backported csmap_v1.h in examples to match csmap.h
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 33be5fd3..cc1c23c0 100644
--- a/docs/csset_api.md
+++ b/docs/csset_api.md
@@ -1,7 +1,7 @@
# STC [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.
+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 an AA-tree.
See the c++ class [std::set](https://en.cppreference.com/w/cpp/container/set) for a functional description.