Versions in this module Expand all Collapse all v1 v1.2.0 Aug 30, 2024 Changes in this version + type ObjectDestroy interface + Destroy func() + type SimpleLockStack struct + Creator func() interface{} + Current *SimpleLockStackElement + func NewStackLock(startsize, maxsize int, creator func() interface{}) *SimpleLockStack + func (s *SimpleLockStack) Active() int + func (s *SimpleLockStack) Capacity() int + func (s *SimpleLockStack) Len() int + func (s *SimpleLockStack) Pop() (value interface{}) + func (s *SimpleLockStack) Push(value interface{}) + func (s *SimpleLockStack) String() string + type SimpleLockStackElement struct + Next *SimpleLockStackElement + Previous *SimpleLockStackElement + Value interface{}