Versions in this module Expand all Collapse all v1 v1.0.3 Nov 5, 2024 Changes in this version + type RingBuffer struct + func New[T any](size int64) *RingBuffer[T] + func (rb *RingBuffer[T]) Len() int64 + func (rb *RingBuffer[T]) Pop() (T, bool) + func (rb *RingBuffer[T]) PopN(n int64) ([]T, bool) + func (rb *RingBuffer[T]) Push(item T)