Public Member Functions | |
bool | operator() (const std::pair< T1, T2 > &lhs, const std::pair< T1, T2 > &rhs) |
bool | operator() (const T1 &lhs, const T1 &rhs) |
bool | operator() (const std::pair< T1, T2 > &lhs, const T1 &rhs) |
bool | operator() (const T1 &lhs, const std::pair< T1, T2 > &rhs) |
Public Attributes | |
Comp | comp |
Definition at line 16 of file Multi5x5ClusterAlgo.cc.
bool PairSortByFirst< T1, T2, Comp >::operator() | ( | const std::pair< T1, T2 > & | lhs, |
const std::pair< T1, T2 > & | rhs | ||
) | [inline] |
Definition at line 18 of file Multi5x5ClusterAlgo.cc.
References PairSortByFirst< T1, T2, Comp >::comp.
{return comp(lhs.first,rhs.first);}
bool PairSortByFirst< T1, T2, Comp >::operator() | ( | const T1 & | lhs, |
const T1 & | rhs | ||
) | [inline] |
Definition at line 21 of file Multi5x5ClusterAlgo.cc.
References PairSortByFirst< T1, T2, Comp >::comp.
{return comp(lhs,rhs);}
bool PairSortByFirst< T1, T2, Comp >::operator() | ( | const std::pair< T1, T2 > & | lhs, |
const T1 & | rhs | ||
) | [inline] |
Definition at line 20 of file Multi5x5ClusterAlgo.cc.
References PairSortByFirst< T1, T2, Comp >::comp.
{return comp(lhs.first,rhs);}
bool PairSortByFirst< T1, T2, Comp >::operator() | ( | const T1 & | lhs, |
const std::pair< T1, T2 > & | rhs | ||
) | [inline] |
Definition at line 19 of file Multi5x5ClusterAlgo.cc.
References PairSortByFirst< T1, T2, Comp >::comp.
{return comp(lhs,rhs.first);}
Comp PairSortByFirst< T1, T2, Comp >::comp |
Definition at line 17 of file Multi5x5ClusterAlgo.cc.
Referenced by PairSortByFirst< T1, T2, Comp >::operator()().