Variable LinkedList.tail

Tail of the list.

struct LinkedList
{
  // ...
  LinkedListElement!T* tail = null;
  // ...
}