sort


Description:

[ ReturnsModifiedPointer ]
public void sort (CompareFunc<G> compare_func)

Example: Sort all items:

public static int main (string[] args) {
SList<string> list = new SList<string> ();
list.append ("3. entry");
list.append ("1. entry");
list.append ("2. entry");

list.sort (strcmp);

// Out:
// ´´1. entry´
// ´´2. entry´´
// ´´3. entry´´
foreach (string str in list) {
print ("%s\n", str);
}

return 0;
}

valac --pkg glib-2.0 GLib.SList.sort.vala