Queue holds elements in a singly-linked-list
| 22 | |
| 23 | // Queue holds elements in a singly-linked-list |
| 24 | type Queue struct { |
| 25 | list *singlylinkedlist.List |
| 26 | } |
| 27 | |
| 28 | // New instantiates a new empty queue |
| 29 | func New() *Queue { |
nothing calls this directly
no outgoing calls
no test coverage detected