Stack is a base structure for LIFO
| 7 | |
| 8 | // Stack is a base structure for LIFO |
| 9 | type Stack struct { |
| 10 | sp *StackItem |
| 11 | depth uint64 |
| 12 | } |
| 13 | |
| 14 | // Initialzes new Stack |
| 15 | func New() *Stack { |
nothing calls this directly
no outgoing calls
no test coverage detected