Queue interface that all queues implement
| 14 | |
| 15 | // Queue interface that all queues implement |
| 16 | type Queue interface { |
| 17 | Enqueue(value interface{}) |
| 18 | Dequeue() (value interface{}, ok bool) |
| 19 | Peek() (value interface{}, ok bool) |
| 20 | |
| 21 | containers.Container |
| 22 | // Empty() bool |
| 23 | // Size() int |
| 24 | // Clear() |
| 25 | // Values() []interface{} |
| 26 | // String() string |
| 27 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…