--- a/docs/Writerside/topics/collections.md Tue Sep 23 20:31:50 2025 +0200 +++ b/docs/Writerside/topics/collections.md Wed Sep 24 23:50:15 2025 +0200 @@ -3,10 +3,12 @@ UCX provides a [linked list](linked_list.h.md) and [array list](array_list.h.md) implementation over a common [list](list.h.md) interface, as well as a [hash nap](hash_map.h.md) implementation over a [map](map.h.md) interface, and a basic [tree](tree.h.md) implementation. +Another special collection is the [key/value-list](kv_list.h.md) that combines both the list and the map interfaces. + Additionally, UCX provides an abstraction for [iterators](iterator.h.md) that work with all collection types, and plain C arrays. -The design goal of this API was to provide high level abstractions (functions in lowerCamelCase) and low level +The design goal of this API was to provide high-level abstractions (functions in lowerCamelCase) and low-level implementations (functions in snake_case). -This way you can freely choose whether to use the predefined implementations for the various collection types, -or to implement your own collections using the low level API. +This way you can freely choose whether to use the predefined implementations for the various collection types +or to implement your own collections using the low-level API.