ds

package
v0.2.0 Latest Latest
Warning

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

Go to latest
Published: May 9, 2024 License: Apache-2.0 Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Stack

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

Stack represent generic stack. Not a thread safe!

func (*Stack[T]) Get

func (s *Stack[T]) Get(i int) T

Get returns a value of the stack, without removing.

func (*Stack[T]) Len

func (s *Stack[T]) Len() int

Len returns length of the stack.

func (*Stack[T]) Peek

func (s *Stack[T]) Peek() T

Peek returns a value of the stack from the end, without removing.

func (*Stack[T]) Pop

func (s *Stack[T]) Pop() T

Pop pops a value from the stack.

func (*Stack[T]) Push

func (s *Stack[T]) Push(v T)

Push pushes a value onto the stack.

Jump to

Keyboard shortcuts

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