Functions | |
EAPI void * | ecore_list_index_goto (Ecore_List *list, int index) |
Make the current item the item with the given index number. | |
EAPI void * | ecore_list_goto (Ecore_List *list, const void *data) |
Make the current item the node that contains data . | |
EAPI void * | ecore_list_first_goto (Ecore_List *list) |
Make the current item the first item in the list. | |
EAPI void * | ecore_list_last_goto (Ecore_List *list) |
Make the current item the last item in the list. | |
EAPI int | ecore_list_for_each (Ecore_List *list, Ecore_For_Each function, void *user_data) |
Execute function for each node in list . |
EAPI void* ecore_list_first_goto | ( | Ecore_List * | list | ) | [inline] |
Make the current item the first item in the list.
list | The list. |
NULL
on failure EAPI int ecore_list_for_each | ( | Ecore_List * | list, | |
Ecore_For_Each | function, | |||
void * | user_data | |||
) |
Execute function for each node in list
.
list | The list. | |
function | The function to pass each node from list to. |
TRUE
on success, FALSE
on failure. EAPI void* ecore_list_goto | ( | Ecore_List * | list, | |
const void * | data | |||
) | [inline] |
Make the current item the node that contains data
.
list | The list. | |
data | The data to find. |
data
on success, NULL
on failure. EAPI void* ecore_list_index_goto | ( | Ecore_List * | list, | |
int | index | |||
) | [inline] |
Make the current item the item with the given index number.
list | The list. | |
index | The position to move the current item. |
NULL
on failure. EAPI void* ecore_list_last_goto | ( | Ecore_List * | list | ) | [inline] |
Make the current item the last item in the list.
list | The list. |
NULL
on failure.