Variable LinkedList.head

Head of the list.

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