DeQueue it will be removed the first value that added into the list
()
| 18 | |
| 19 | // DeQueue it will be removed the first value that added into the list |
| 20 | func DeQueue() any { |
| 21 | data := ListQueue[0] |
| 22 | ListQueue = ListQueue[1:] |
| 23 | return data |
| 24 | } |
| 25 | |
| 26 | // FrontQueue return the Front value |
| 27 | func FrontQueue() any { |