LinkedList.empty

Check if list has no elements.

struct LinkedList(T, bool ordered = true)
@property
bool
empty
()

Examples

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

Meta