MCPcopy Create free account
hub / github.com/USCiLab/cereal / PopBack

Method PopBack

include/cereal/external/rapidjson/document.h:2553–2553  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2551 GenericArray PushBack(StringRefType value, AllocatorType& allocator) const { value_.PushBack(value, allocator); return *this; }
2552 template <typename T> CEREAL_RAPIDJSON_DISABLEIF_RETURN((internal::OrExpr<internal::IsPointer<T>, internal::IsGenericValue<T> >), (const GenericArray&)) PushBack(T value, AllocatorType& allocator) const { value_.PushBack(value, allocator); return *this; }
2553 GenericArray PopBack() const { value_.PopBack(); return *this; }
2554 ValueIterator Erase(ConstValueIterator pos) const { return value_.Erase(pos); }
2555 ValueIterator Erase(ConstValueIterator first, ConstValueIterator last) const { return value_.Erase(first, last); }
2556

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected