Reference
boost::redis::resp3::basic_node
A node in the response tree.
Synopsis
Declared in <boost/redis/resp3/node.hpp>
template<class String>
struct basic_node;
Data Members
Name |
Description |
The RESP3 type of the data in this node. |
|
The number of elements of an aggregate. |
|
The depth of this node in the response tree. |
|
The actual data. For aggregate types this is usually empty. |
Description
RESP3 can contain recursive data structures, like a map of sets of vectors. This class is called a node because it can be seen as the element of the response tree. It is a template so that users can use it with any string type, like std::string or boost::static_string.
Template Parameters
Name |
Description |
String |
A |
Created with MrDocs