Returns whether the list is empty.
Example:
var list = new ArrayList<string> (GLib.str_equal);
assert (list.isEmpty ());
list.add ("a");
assert (!list.isEmpty ());
|
true if the list has no elements. |