Lines Matching defs:next
47 // type E and a pointer to the next node.
56 // Gets the next node in the queue.
57 QueueNode* next() { return next_; }
58 const QueueNode* next() const { return next_; }
61 // Creates a node with a given element value. The next pointer is
88 QueueNode<E>* next = node->next();
91 node = next;
93 next = node->next();