1.0.1 • Published 6 years ago

wolf-stack v1.0.1

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

Wolf Stack

A lightweight implementation of a Stack data structure.

Methods AvailableMethod Descriptions
pushadds a value to the stack
popremoves and returns the value at the top of the stack
peekreturns the value at the top of the stack
isEmptyreturns a boolean indicating if the stack has any values
printlogs a string of the values stored in the stack
getMinimumreturns the minimum value in the stack

NOTE: getMinimum requires the stack to contain numeric values only clear | empties all values from the current stack

Properties AvailableProperty Descriptions
sizereturns the amount of values stored in the stack