Next returns the next frame in the stack trace, and a boolean indicating whether there are more after it.
()
| 125 | // Next returns the next frame in the stack trace, |
| 126 | // and a boolean indicating whether there are more after it. |
| 127 | func (st *Stack) Next() (_ runtime.Frame, more bool) { |
| 128 | return st.frames.Next() |
| 129 | } |
| 130 | |
| 131 | // Take returns a string representation of the current stacktrace. |
| 132 | // |
no outgoing calls