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