CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions
std::equal_to< std::pair< size_t, size_t > > Struct Template Reference

#include <PFBlockAlgo.h>

Public Types

typedef std::pair< size_t, size_t > arg_type
 

Public Member Functions

bool operator() (const arg_type &arg1, const arg_type &arg2) const
 

Detailed Description

template<>
struct std::equal_to< std::pair< size_t, size_t > >

Definition at line 76 of file PFBlockAlgo.h.

Member Typedef Documentation

typedef std::pair<size_t,size_t> std::equal_to< std::pair< size_t, size_t > >::arg_type

Definition at line 77 of file PFBlockAlgo.h.

Member Function Documentation

bool std::equal_to< std::pair< size_t, size_t > >::operator() ( const arg_type arg1,
const arg_type arg2 
) const
inline

Definition at line 78 of file PFBlockAlgo.h.

78  {
79  return (arg1.first == arg2.first && arg1.second == arg2.second);
80  }