std::collections::linkedlist {Type}

LinkedList

struct LinkedList
{
	Allocator allocator;
	usz size;
	Node* _first;
	Node* _last;
}

Members

Methods