Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/BehaviorTree/BehaviorTree.CPP
/ PushArr
Method
PushArr
3rdparty/tinyxml2/tinyxml2.h:230–236 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
228
}
229
230
T* PushArr( size_t count ) {
231
TIXMLASSERT( _size <= SIZE_MAX - count );
232
EnsureCapacity( _size+count );
233
T* ret = &_mem[_size];
234
_size += count;
235
return ret;
236
}
237
238
T Pop() {
239
TIXMLASSERT( _size > 0 );
Callers
3
Print
Method · 0.80
Write
Method · 0.80
Putc
Method · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected