bound

package
v0.0.49-alpha.55.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 21, 2025 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrQueueFull  = errors.New("queue is full")
	ErrQueueEmpty = errors.New("queue is empty")
)

Functions

This section is empty.

Types

type BoundedQueue

type BoundedQueue[T any] struct {
	// contains filtered or unexported fields
}

BoundedQueue has its capacity. Push returns an error when the BoundedQueue is full.

func NewBoundedQueue

func NewBoundedQueue[T any](capacity int) *BoundedQueue[T]

func (*BoundedQueue[T]) Contains

func (q *BoundedQueue[T]) Contains(item T, equalFunc func(a, b T) bool) bool

func (*BoundedQueue[T]) Full

func (q *BoundedQueue[T]) Full() bool

func (*BoundedQueue[T]) Len

func (q *BoundedQueue[T]) Len() int

func (*BoundedQueue[T]) Pop

func (q *BoundedQueue[T]) Pop() (T, error)

func (*BoundedQueue[T]) Push

func (q *BoundedQueue[T]) Push(item T) error

func (*BoundedQueue[T]) Remove

func (q *BoundedQueue[T]) Remove(item T, equalFunc func(a, b T) bool) bool

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL