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

Method push_back

NULLC/Array.h:60–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 15

ImportEndFunction · 0.45
StartTypeFunction · 0.45
ColorTextMethod · 0.45
WinMainFunction · 0.45
AddTabWithFileFunction · 0.45
InitInstanceFunction · 0.45
FillArrayVariableInfoFunction · 0.45
FillComplexVariableInfoFunction · 0.45
FillAutoInfoFunction · 0.45
FillVariableInfoTreeFunction · 0.45
PipeInitFunction · 0.45

Calls 1

assertFunction · 0.85

Tested by

no test coverage detected