aboutsummaryrefslogtreecommitdiffstats
path: root/doc/README.wmem
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-07-21 21:13:30 +0000
committerEvan Huus <eapache@gmail.com>2013-07-21 21:13:30 +0000
commit037fc022dacea10c13289bc5eb16bf8a52bf984e (patch)
tree1c9208e9f61fc1debb1a6b3609a6aeff2182af99 /doc/README.wmem
parent9e1b53539ab34e03a85c06d4bbc8047c9f0202d4 (diff)
Add wmem queue 'implementation' by wrapping wmem_list and wmem_stack.
Also a bit of misc. refactoring of the stack while I was there, and doc tweaks. svn path=/trunk/; revision=50769
Diffstat (limited to 'doc/README.wmem')
-rw-r--r--doc/README.wmem10
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/README.wmem b/doc/README.wmem
index e1fea5d409..b779cf4351 100644
--- a/doc/README.wmem
+++ b/doc/README.wmem
@@ -92,14 +92,20 @@ wmem_strbuf.h
2.2.3 Container Data Structures
+wmem_array.h
+ - A growable array (AKA vector) implementation.
+
wmem_list.h
- A doubly-linked list implementation.
+wmem_queue.h
+ - A queue implementation (first-in, first-out).
+
wmem_stack.h
- - A stack implementation (push, pop, etc).
+ - A stack implementation (last-in, first-out).
wmem_tree.h
- - A red-black tree implementation.
+ - A balanced binary tree (red-black tree) implementation.
2.2.4 Miscellanious Utilities