Back returns the n'th item in stack
(n int)
| 71 | |
| 72 | // Back returns the n'th item in stack |
| 73 | func (st *Stack) Back(n int) *big.Int { |
| 74 | return st.data[st.len()-n-1] |
| 75 | } |
| 76 | |
| 77 | func (st *Stack) require(n int) error { |
| 78 | if st.len() < n { |
no test coverage detected