buffer

package
v1.9.0 Latest Latest
Warning

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

Go to latest
Published: Oct 3, 2022 License: BSD-3-Clause Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type UnboundedQueue

type UnboundedQueue[T any] interface {
	Enqueue(T)
	// Returns false if the queue is empty.
	Dequeue() (T, bool)
	// Returns the oldest element without removing it.
	// Returns false if the queue is empty.
	PeekHead() (T, bool)
	// Returns the newest without removing it.
	// Returns false if the queue is empty.
	PeekTail() (T, bool)
	Len() int
}

An unbounded queue. Not safe for concurrent access.

func NewUnboundedSliceQueue

func NewUnboundedSliceQueue[T any](initSize int) UnboundedQueue[T]

Returns a new unbounded queue with the given initial slice size. Note that the returned queue is always empty -- [initSize] is just a hint to prevent unnecessary resizing.

Jump to

Keyboard shortcuts

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