MCPcopy Create free account
hub / github.com/0xAX/go-algorithms / QueueItem

Struct QueueItem

queue/queue.go:28–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26package queue
27
28type QueueItem struct {
29 item interface{}
30 prev *QueueItem
31}
32
33// Base data structure for Queue
34type Queue struct {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected