函数
GLibListfind_custom
声明 [src]
GList*
g_list_find_custom (
GList* list,
gconstpointer data,
GCompareFunc func
)
描述 [src]
在 GList
中查找一个元素,使用提供的函数来查找所需元素。它遍历列表,调用给定的函数,该函数应在找到所需元素时返回 0。函数接受两个 #gconstpointer 参数,GList
元素的数据作为第一个参数,用户数据作为第二个参数。
此函数不直接对语言绑定可用。