MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / pop_back

Method pop_back

src/script/interpreter.cpp:305–313  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

303 ++m_stack_size;
304 }
305 void pop_back()
306 {
307 assert(m_stack_size > 0);
308 --m_stack_size;
309 if (m_first_false_pos == m_stack_size) {
310 // When popping off the first false value, everything becomes true.
311 m_first_false_pos = NO_FALSE;
312 }
313 }
314 void toggle_top()
315 {
316 assert(m_stack_size > 0);

Callers 15

GetMaxKeyExprMethod · 0.45
GetKeyCountMethod · 0.45
ParseDeriveTypeFunction · 0.45
ParseScriptFunction · 0.45
InsertMethod · 0.45
ValidDepthsMethod · 0.45
InferTaprootTreeFunction · 0.45
ForEachNodeFunction · 0.45
~NodeMethod · 0.45
TreeEvalMaybeMethod · 0.45
CompareMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected