queue

package
v0.21.18 Latest Latest
Warning

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

Go to latest
Published: Oct 13, 2021 License: GPL-3.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Queue

type Queue interface {
	// push a data into queue
	Push(v interface{})
	// pop first data
	Pop() (interface{}, bool)
	// pop many of data
	PopMany(count int64) ([]interface{}, bool)
	// pop all data
	PopAll() ([]interface{}, bool)
	// peek first data
	Front() (interface{}, bool)
	// peek end data
	End() (interface{}, bool)
	// get length of queue
	Length() int64
	// judge queue's lenght if 0
	IsEmpty() bool
}

Queue functions for manager datas in queue

func New

func New() Queue

New get queue functions manager

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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