![]() |
(git:d18deda)
|
An array-based list which grows on demand. When the internal array is full, a new array of twice the size will be allocated and the items are copied over. More...
Data Types | |
interface | list_destroy |
interface | list_get |
interface | list_init |
interface | list_isready |
interface | list_peek |
interface | list_pop |
interface | list_push |
interface | list_size |
An array-based list which grows on demand. When the internal array is full, a new array of twice the size will be allocated and the items are copied over.
This list can also be used as a stack. Have look at list_push(), list_pop() and list_peek().