cereal
A C++11 library for serialization
|
Support for types found in <array> More...
Go to the source code of this file.
Functions | |
template<class Archive , class T , size_t N> | |
std::enable_if< traits::is_output_serializable< BinaryData< T >, Archive >::value &&std::is_arithmetic< T >::value, void >::type | cereal::CEREAL_SAVE_FUNCTION_NAME (Archive &ar, std::array< T, N > const &array) |
template<class Archive , class T , size_t N> | |
std::enable_if< traits::is_input_serializable< BinaryData< T >, Archive >::value &&std::is_arithmetic< T >::value, void >::type | cereal::CEREAL_LOAD_FUNCTION_NAME (Archive &ar, std::array< T, N > &array) |
template<class Archive , class T , size_t N> | |
std::enable_if<!traits::is_output_serializable< BinaryData< T >, Archive >::value||!std::is_arithmetic< T >::value, void >::type | cereal::CEREAL_SAVE_FUNCTION_NAME (Archive &ar, std::array< T, N > const &array) |
Saving for std::array all other types. | |
template<class Archive , class T , size_t N> | |
std::enable_if<!traits::is_input_serializable< BinaryData< T >, Archive >::value||!std::is_arithmetic< T >::value, void >::type | cereal::CEREAL_LOAD_FUNCTION_NAME (Archive &ar, std::array< T, N > &array) |
Loading for std::array all other types. | |
Support for types found in <array>
|
inline |
Loading for std::array primitive types using binary serialization, if supported
|
inline |
Saving for std::array primitive types using binary serialization, if supported