CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Static Public Member Functions
cond::serialization::access< std::pair< T, U > > Struct Template Reference

#include <Equal.h>

Static Public Member Functions

static bool equal_ (const std::pair< T, U > &first, const std::pair< T, U > &second)
 

Detailed Description

template<typename T, typename U>
struct cond::serialization::access< std::pair< T, U > >

Definition at line 94 of file Equal.h.

Member Function Documentation

template<typename T , typename U >
static bool cond::serialization::access< std::pair< T, U > >::equal_ ( const std::pair< T, U > &  first,
const std::pair< T, U > &  second 
)
inlinestatic

Definition at line 96 of file Equal.h.

References cond::serialization::equal().

97  {
98  return equal(first.first, second.first) and equal(first.second, second.second);
99  }
bool equal(const T &first, const T &second)
Definition: Equal.h:34
U second(std::pair< T, U > const &p)