Function is_inline
Synopsis
#include <include/cpptoml.h>
bool is_inline() const
Description
Whether or not the table array is declared inline. This mostly matters for parsing, where statically defined arrays cannot be appended to using the array-of-table syntax.
Source
Lines 1167-1170 in include/cpptoml.h.
bool is_inline() const
{
return is_inline_;
}