Function push_back
Synopsis
#include <include/cpptoml.h>
void push_back(const std::shared_ptr< table > &val)
Description
Add a table to the end of the array
Source
Lines 1125-1128 in include/cpptoml.h.
void push_back(const std::shared_ptr<table>& val)
{
array_.push_back(val);
}