ListG.findCustom

Finds an element in a #GList, using a supplied function to find the desired element. It iterates over the list, calling the given function which should return 0 when the desired element is found. The function takes two #gconstpointer arguments, the #GList element's data as the first argument and the given user data.

class ListG
findCustom
(
void* data
,
GCompareFunc func
)

Parameters

data void*

user data passed to the function

func GCompareFunc

the function to call for each element. It should return 0 when the desired element is found

Return Value

Type: ListG

the found #GList element, or %NULL if it is not found

Meta