Queue.insertSorted
void insertSorted(void * data, glib.types.CompareDataFunc func)Inserts data into queue using func to determine the new position.
Parameters
data | the data to insert |
func | the #GCompareDataFunc used to compare elements in the queue. It is called with two elements of the queue and user_data. It should return 0 if the elements are equal, a negative value if the first element comes before the second, and a positive value if the second element comes before the first. |