Wt  4.10.4
Public Member Functions | Static Public Attributes | List of all members
Wt::Json::Array Class Reference

A JSON array. More...

#include <Array.h>

Inherits std::vector< T >.

Public Member Functions

 Array ()
 Constructor.
 
 Array (const Array &other)
 Copy constructor.
 
Arrayoperator= (const Array &other)
 Assignment operator.
 
 Array (Array &&other)
 Move constructor.
 
 Array (std::initializer_list< Value > list)
 Initializer list constructor.
 
Arrayoperator= (Array &&other)
 Assignment operator.
 

Static Public Attributes

static Array Empty
 Empty array constant.
 

Detailed Description

A JSON array.

This class represents a JSON array. It is implemented as a std::vector<Json::Value> – no new API to learn here!