Versions in this module Expand all Collapse all v0 v0.21.0 Jul 29, 2025 Changes in this version + type IQueue interface + Capacity func() int + Dequeue func() T + Enqueue func(value T) bool + Front func() (T, bool) + Len func() int + Tail func() (T, bool) + type Queue struct + func New() *Queue + func (q *Queue) Dequeue() any + func (q *Queue) Enqueue(item any) + func (q *Queue) Len() int + func (q *Queue) Peek() any