MCPcopy
hub / github.com/emirpasic/gods / Queue

Struct Queue

queues/arrayqueue/arrayqueue.go:24–26  ·  view source on GitHub ↗

Queue holds elements in an array-list

Source from the content-addressed store, hash-verified

22
23// Queue holds elements in an array-list
24type Queue struct {
25 list *arraylist.List
26}
27
28// New instantiates a new empty queue
29func New() *Queue {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected