reverse


Description:

[ ReturnsModifiedPointer ]
public void reverse ()

Example: Reverse:

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

list.reverse ();

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

return 0;
}

valac --pkg glib-2.0 GLib.List.reverse.vala