SNAP Library 3.0, User Reference  2016-07-20 17:56:49
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TCmpTripleByVal2< TVal1, TVal2, TVal3 > Class Template Reference

Compares the triple by the second value. More...

#include <ds.h>

Public Member Functions

 TCmpTripleByVal2 (const bool &AscSort=true)
 
bool operator() (const TTriple< TVal1, TVal2, TVal3 > &T1, const TTriple< TVal1, TVal2, TVal3 > &T2) const
 

Private Attributes

bool IsAsc
 

Detailed Description

template<class TVal1, class TVal2, class TVal3>
class TCmpTripleByVal2< TVal1, TVal2, TVal3 >

Compares the triple by the second value.

Definition at line 193 of file ds.h.

Constructor & Destructor Documentation

template<class TVal1 , class TVal2 , class TVal3 >
TCmpTripleByVal2< TVal1, TVal2, TVal3 >::TCmpTripleByVal2 ( const bool &  AscSort = true)
inline

Definition at line 197 of file ds.h.

197 : IsAsc(AscSort) { }
bool IsAsc
Definition: ds.h:195

Member Function Documentation

template<class TVal1 , class TVal2 , class TVal3 >
bool TCmpTripleByVal2< TVal1, TVal2, TVal3 >::operator() ( const TTriple< TVal1, TVal2, TVal3 > &  T1,
const TTriple< TVal1, TVal2, TVal3 > &  T2 
) const
inline

Definition at line 198 of file ds.h.

198  {
199  if (IsAsc) { return T1.Val2 < T2.Val2; } else { return T2.Val2 < T1.Val2; }
200  }
TVal2 Val2
Definition: ds.h:132
bool IsAsc
Definition: ds.h:195

Member Data Documentation

template<class TVal1 , class TVal2 , class TVal3 >
bool TCmpTripleByVal2< TVal1, TVal2, TVal3 >::IsAsc
private

Definition at line 195 of file ds.h.


The documentation for this class was generated from the following file: