/ring

Ring Buffer

Primary LanguageGoMIT LicenseMIT

Ring Buffer

Go Reference Go Report Card License: MIT

type Ring[T any] interface {
	Put(value T)
	Get() T
	Size() int64
	Capacity() int64
}