MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / push

Method push

src/common/classes/stack.h:132–141  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

130 }
131
132 void push(const Object& e)
133 {
134 if (!stk && stk_cache)
135 {
136 stk = stk_cache;
137 stk_cache = 0;
138 }
139 stk = stk ? stk->push(e, getPool())
140 : FB_NEW_POOL(getPool()) Entry(e, 0);
141 }
142
143 void push(const Stack& s)
144 {

Callers 2

AutoPushPopMethod · 0.45
reverse_iteratorMethod · 0.45

Calls 4

EntryClass · 0.70
pushFunction · 0.70
hasDataMethod · 0.45
objectMethod · 0.45

Tested by

no test coverage detected