| 6 | } |
| 7 | |
| 8 | type Element struct { |
| 9 | value int // All types satisfy the empty interface, so we can store anything here. |
| 10 | next *Element |
| 11 | } |
| 12 | |
| 13 | // Return the stack's length |
| 14 | func (s *Stack) Len() int { |
nothing calls this directly
no outgoing calls
no test coverage detected