diff -r 68b75c091028 -r 55b13f583356 docs/Writerside/topics/kv_list.h.md --- 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 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.