MCPcopy Create free account
hub / github.com/WheretIB/nullc / push_back

Method push_back

NULLC/translation/runtime.cpp:57–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55 }
56
57 T* push_back()
58 {
59 count++;
60 if(count == max)
61 grow(count);
62 return &data[count - 1];
63 };
64 void push_back(const T& val)
65 {
66 data[count++] = val;

Callers 6

__nullcRegisterTypeFunction · 0.45
__nullcRegisterMembersFunction · 0.45
__nullcRegisterFunctionFunction · 0.45
__nullcRegisterGlobalFunction · 0.45
AllocMethod · 0.45
AllocObjectMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected