Versions in this module Expand all Collapse all v3 v3.0.1 Nov 3, 2022 Changes in this version + type Node struct + Next *Node + Val any + type SList struct + func (sl *SList) Empty() bool + func (sl *SList) Length() int + func (sl *SList) Peak() (any, error) + func (sl *SList) Pop() (any, error) + func (sl *SList) Push(val any) + type Stack struct