1 # Array List |
1 # Array List |
2 |
2 |
3 Next to an array list implementation of the list interface, |
3 Next to an array list implementation of the list interface, |
4 UCX offers several functions to work with plain C arrays equipped with a size and a capacity. |
4 UCX offers several functions to work with plain C arrays equipped with a size and a capacity. |
5 |
5 |
6 The high level [list interface](list.h.md) is documented on a separate page and explains how lists are used |
6 The high-level [list interface](list.h.md) is documented on a separate page and explains how lists are used |
7 that are created by one of the following functions. |
7 that are created by one of the following functions. |
8 |
8 |
9 ```C |
9 ```C |
10 #include <cx/array_list.h> |
10 #include <cx/array_list.h> |
11 |
11 |