|
NDDEM
|
Support for types found in <array> More...
Go to the source code of this file.
Namespaces | |
| cereal | |
| in certain simple scenarios. They should probably not be used if maximizing performance is the main objective. | |
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. More... | |
| 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. More... | |
Support for types found in <array>