| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected