Content deleted Content added
m →Vala: add link |
|||
Line 100:
<source lang=vala>
class Node {
public weak Node prev; // a weak reference is used to avoid circular references between nodes of a doubly-linked list
public Node next;
}
|