Base data structure for Queue
| 32 | |
| 33 | // Base data structure for Queue |
| 34 | type Queue struct { |
| 35 | current *QueueItem |
| 36 | last *QueueItem |
| 37 | depth uint64 |
| 38 | } |
| 39 | |
| 40 | // Initializes new Queue and return it |
| 41 | func New() *Queue { |
nothing calls this directly
no outgoing calls
no test coverage detected