std::collections::linkedlist {Type}

Node

struct Node
{
	Node* next;
	Node* prev;
	Type value;
}

Members

Methods