| 
| template<typename T , std::enable_if_t< is_map< T >::value, int >  = 0>  | 
| std::string  | mrpt::serialization::containerName () | 
|   | 
| template<typename T , std::enable_if_t< is_simple_type< T >::value, int >  = 0>  | 
| CArchive &  | mrpt::serialization::operator<< (CArchive &out, const T &obj) | 
|   | Template method to serialize an associative STL container.  More...
  | 
|   | 
| template<typename T , std::enable_if_t< is_simple_type< T >::value, int >  = 0>  | 
| CArchive &  | mrpt::serialization::operator>> (CArchive &in, T &obj) | 
|   | Template method to deserialize an associative STL container.  More...
  | 
|   | 
| template<class T , size_t N>  | 
| CArchive &  | mrpt::serialization::operator<< (CArchive &out, const std::array< T, N > &obj) | 
|   | Template method to serialize a std::array<T,N>  More...
  | 
|   | 
| template<class T , size_t N>  | 
| CArchive &  | mrpt::serialization::operator>> (CArchive &in, std::array< T, N > &obj) | 
|   | Template method to deserialize a std::array<T,N>  More...
  | 
|   | 
| template<class T1 , class T2 >  | 
| CArchive &  | mrpt::serialization::operator<< (CArchive &out, const std::pair< T1, T2 > &obj) | 
|   | Template method to serialize a STL pair.  More...
  | 
|   | 
| template<class T1 , class T2 >  | 
| CArchive &  | mrpt::serialization::operator>> (CArchive &in, std::pair< T1, T2 > &obj) | 
|   | Template method to deserialize a STL pair.  More...
  | 
|   |