QueueIterator implements Iterator based on Queue
| 146 | |
| 147 | // QueueIterator implements Iterator based on Queue |
| 148 | type QueueIterator struct { |
| 149 | queue *Queue |
| 150 | } |
| 151 | |
| 152 | // HasNext increments the row cursor. If we're at the end, it'll return false. |
| 153 | func (q *QueueIterator) HasNext() bool { |
nothing calls this directly
no outgoing calls
no test coverage detected