stack

package
v0.14.0 Latest Latest
Warning

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

Go to latest
Published: Jul 26, 2021 License: MIT Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type IStack

type IStack interface {
	Clear()

	Empty() bool

	Size() uint

	// String 从左到右 左边第一个表示Top 如链表 a(top)->b->c
	String() string

	Values() []interface{}

	Push(interface{})

	Pop() (interface{}, bool)

	Peek() (interface{}, bool)
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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