Returns the number of elements in the deque.
Example:
var deque = new Deque<string> (GLib.str_equal);
deque.addLast ("a");
deque.addLast ("b");
assert (deque.size () == 2);
|
the number of elements. |