bound

package
v0.0.50-alpha.104 Latest Latest
Warning

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

Go to latest
Published: Oct 14, 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 Queue

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

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

func NewQueue

func NewQueue[T any](capacity int) *Queue[T]

func (*Queue[T]) Contains

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

func (*Queue[T]) ForcePush

func (q *Queue[T]) ForcePush(item T)

ForcePush pushes an item to the queue regardless of capacity. If the queue is at capacity, it will exceed the capacity limit.

func (*Queue[T]) Full

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

func (*Queue[T]) Len

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

func (*Queue[T]) Peek

func (q *Queue[T]) Peek(item T, equalFunc func(a, b T) bool) int

func (*Queue[T]) Pop

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

func (*Queue[T]) Push

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

func (*Queue[T]) Remove

func (q *Queue[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