cereal
A C++11 library for serialization
Loading...
Searching...
No Matches
cereal::MapItem< Key, Value > Struct Template Reference

A wrapper around a key and value for serializing data into maps. More...

#include </build/libcereal-p0YfAJ/libcereal-1.3.2+dfsg/include/cereal/details/helpers.hpp>

Public Types

using KeyType
using ValueType

Public Member Functions

 MapItem (Key &&key_, Value &&value_)
 Construct a MapItem from a key and a value.
MapItemoperator= (MapItem const &)=delete
template<class Archive>
void CEREAL_SERIALIZE_FUNCTION_NAME (Archive &archive)
 Serialize the MapItem with the NVPs "key" and "value".

Public Attributes

KeyType key
ValueType value

Detailed Description

template<class Key, class Value>
struct cereal::MapItem< Key, Value >

A wrapper around a key and value for serializing data into maps.

This class just provides a grouping of keys and values into a struct for human readable archives. For example, XML archives will use this wrapper to write maps like so:

<mymap>
<item0>
<key>MyFirstKey</key>
<value>MyFirstValue</value>
</item0>
<item1>
<key>MySecondKey</key>
<value>MySecondValue</value>
</item1>
</mymap>
See also
make_map_item

Member Typedef Documentation

◆ KeyType

template<class Key, class Value>
using cereal::MapItem< Key, Value >::KeyType
Initial value:
typename std::conditional<
std::is_lvalue_reference<Key>::value,
Key,
typename std::decay<Key>::type>::type

◆ ValueType

template<class Key, class Value>
using cereal::MapItem< Key, Value >::ValueType
Initial value:
typename std::conditional<
std::is_lvalue_reference<Value>::value,
Value,
typename std::decay<Value>::type>::type

The documentation for this struct was generated from the following file: