remove_all


Description:

[ Version ( since = "2.4" ) ]
public uint remove_all (G data)

Remove all elements whose data equals data from this.

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

Parameters:

this

a Queue

data

the data to remove

Returns:

the number of elements removed from this