Versions in this module Expand all Collapse all v1 v1.0.1 May 14, 2024 v1.0.0 Sep 23, 2022 Changes in this version + func IntValue(lit []byte) (int64, error) + func LitToRune(lit []byte) rune + func RuneToString(r rune) string + func UintValue(lit []byte) (uint64, error) + type Stack struct + func NewStack(capacity int) *Stack + func (this *Stack) Len() int + func (this *Stack) Peek(index int) interface{} + func (this *Stack) Pop() (item interface{}) + func (this *Stack) Push(items ...interface{}) *Stack + func (this *Stack) Top() interface{}