Depth returns the number of items on the stack.
()
| 42 | |
| 43 | // Depth returns the number of items on the stack. |
| 44 | func (s *stack) Depth() int32 { |
| 45 | return int32(len(s.stk)) |
| 46 | } |
| 47 | |
| 48 | // PushByteArray adds the given back array to the top of the stack. |
| 49 | // |
no outgoing calls