PrevNextAll


Deletion from an asymmetric doubly linked list

	if (item->next) item->next->prev = item->prev;
	*item->prev = item->next;