LQueue will be store the value into the list
| 18 | |
| 19 | // LQueue will be store the value into the list |
| 20 | type LQueue struct { |
| 21 | queue *list.List |
| 22 | } |
| 23 | |
| 24 | // Enqueue will be added new value |
| 25 | func (lq *LQueue) Enqueue(value any) { |
nothing calls this directly
no outgoing calls
no test coverage detected