docs/Writerside/topics/kv_list.h.md

changeset 1605
55b13f583356
parent 1394
7b23c6db9500
--- a/docs/Writerside/topics/kv_list.h.md	Sun Dec 14 16:21:09 2025 +0100
+++ b/docs/Writerside/topics/kv_list.h.md	Sun Dec 14 17:30:17 2025 +0100
@@ -7,14 +7,10 @@
 #include <cx/kv_list.h>
 
 CxList *cxKvListCreate(const CxAllocator *allocator,
-        cx_compare_func comparator, size_t elem_size);
-        
-CxList *cxKvListCreateSimple(size_t elem_size);
+        size_t elem_size);
 
 CxMap *cxKvListCreateAsMap(const CxAllocator *allocator,
-        cx_compare_func comparator, size_t elem_size);
-        
-CxMap *cxKvListCreateAsMapSimple(size_t elem_size);
+        size_t elem_size);
 ```
 
 The lists are created as usual linked lists with an additional map to look up items by key.

mercurial