MCPcopy Create free account
hub / github.com/EricPengShuai/Interview / push

Method push

base_code/template.cpp:78–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76 }
77
78 void push(const T &val) // 入栈操作
79 {
80 if (full()) expand();
81 _pstack[_top++] = val;
82 }
83
84 void pop()
85 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected