Function LinkedList.empty

Check if list has no elements.

bool empty() @property;

Example

LinkedList!int list;
assert(list.empty);