Versions in this module Expand all Collapse all v0 v0.21.0 Jul 29, 2025 Changes in this version + type RingQueue struct + func New[T any](capacity int) *RingQueue[T] + func (q *RingQueue[T]) Capacity() int + func (q *RingQueue[T]) Dequeue() (T, bool) + func (q *RingQueue[T]) Enqueue(value T) bool + func (q *RingQueue[T]) Front() (T, bool) + func (q *RingQueue[T]) IsFull() bool + func (q *RingQueue[T]) Length() int + func (q *RingQueue[T]) LookAll() []T + func (q *RingQueue[T]) Tail() (T, bool)