ListG.insertSortedWithData

Inserts a new element into the list, using the given comparison function to determine its position. Since 2.10

class ListG
insertSortedWithData

Parameters

data void*

the data for the new element

func GCompareDataFunc

the function to compare elements in the list. It should return a number > 0 if the first parameter comes after the second parameter in the sort order.

userData void*

user data to pass to comparison function.

Return Value

Type: ListG

the new start of the GList

Meta