1 # list.h |
1 # List Interface |
2 |
2 |
3 This header defines a common interface for all list implementations. |
3 This header defines a common interface for all list implementations. |
4 |
4 |
5 UCX already comes with two common list implementations (linked list and array list) that should cover most use cases. |
5 UCX already comes with two common list implementations (linked list and array list) that should cover most use cases. |
6 But if you feel the need to implement an own list, the only thing you need to do is to define a struct with a |
6 But if you feel the need to implement an own list, the only thing you need to do is to define a struct with a |