Example: Remove all

public static int main () {
Queue<int> queue = new Queue<int> ();
queue.push_tail (1);
queue.push_tail (2);
queue.push_tail (3);
queue.push_tail (4);
queue.push_tail (4);

queue.remove_all (4);

// Output: ``1 2 3 ``
int item = 0;
while ((item = queue.pop_head ()) != 0) {
print ("%d ", item);
}
print ("\n");

return 0;
}

 valac --pkg glib-2.0 GLib.Queue.remove_all.vala

See: