MCPcopy Create free account
hub / github.com/Tencent/rapidjson / PushBack

Method PushBack

include/rapidjson/document.h:2465–2465  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2463 ValueIterator End() const { return value_.End(); }
2464 GenericArray Reserve(SizeType newCapacity, AllocatorType &allocator) const { value_.Reserve(newCapacity, allocator); return *this; }
2465 GenericArray PushBack(ValueType& value, AllocatorType& allocator) const { value_.PushBack(value, allocator); return *this; }
2466#if RAPIDJSON_HAS_CXX11_RVALUE_REFS
2467 GenericArray PushBack(ValueType&& value, AllocatorType& allocator) const { value_.PushBack(value, allocator); return *this; }
2468#endif // RAPIDJSON_HAS_CXX11_RVALUE_REFS

Callers 10

mainFunction · 0.45
TESTFunction · 0.45
TestCopyFromFunction · 0.45
TestArrayFunction · 0.45
TestObjectFunction · 0.45
MergeDuplicateKeyFunction · 0.45
TESTFunction · 0.45
AddUniqueElementMethod · 0.45
EndValueMethod · 0.45
GenericPointerClass · 0.45

Calls

no outgoing calls

Tested by 6

TESTFunction · 0.36
TestCopyFromFunction · 0.36
TestArrayFunction · 0.36
TestObjectFunction · 0.36
MergeDuplicateKeyFunction · 0.36
TESTFunction · 0.36