Versions in this module Expand all Collapse all v0 v0.0.0 Jan 16, 2025 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)