Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
__nullcRegisterType
Function · 0.45
__nullcRegisterMembers
Function · 0.45
__nullcRegisterFunction
Function · 0.45
__nullcRegisterGlobal
Function · 0.45
Alloc
Method · 0.45
AllocObject
Method · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected