Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

array_kind

A constant used to select a value constructor overload.

Synopsis

Defined in header <boost/json/kind.hpp>

constexpr array_kind_t array_kind;
Description

The library provides this constant to allow efficient construction of a value containing an empty array.

Example
storage_ptr sp;
value jv( array_kind, sp ); // sp is an optional parameter
See Also

array_kind_t

Convenience header <boost/json.hpp>


PrevUpHomeNext