package
0.0.0-20240303235359-511227b8aea2
Repository: https://github.com/lukmanern/go-with-me.git
Documentation: pkg.go.dev
# README
Queue
This is a basic queue
data structure implemented in Go. A queue is a collection of elements that are added and removed according to the first-in, first-out (FIFO)
principle. In other words, elements are added to the end of the queue and removed from the front.