Returns true if the list has no elements
A boolean that is true if the list is empty, false otherwise
LinkedList<int> list = {}; list.empty(); //returns true list.pushBack(3); list.empty(); //returns false