SNAP Library 2.1, Developer Reference  2013-09-25 10:47:25
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
TCmpTripleByVal3< TVal1, TVal2, TVal3 > Class Template Reference

Compares the triple by the third value. More...

#include <ds.h>

List of all members.

Public Member Functions

 TCmpTripleByVal3 (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 TCmpTripleByVal3< TVal1, TVal2, TVal3 >

Compares the triple by the third value.

Definition at line 200 of file ds.h.


Constructor & Destructor Documentation

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

Definition at line 204 of file ds.h.

: IsAsc(AscSort) { }

Member Function Documentation

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

Definition at line 205 of file ds.h.

References TCmpTripleByVal3< TVal1, TVal2, TVal3 >::IsAsc, and TTriple< TVal1, TVal2, TVal3 >::Val3.

                                                                                                          {
    if (IsAsc) { return T1.Val3 < T2.Val3; } else { return T2.Val3 < T1.Val3; }
  }

Member Data Documentation

template<class TVal1 , class TVal2 , class TVal3 >
bool TCmpTripleByVal3< TVal1, TVal2, TVal3 >::IsAsc [private]

Definition at line 202 of file ds.h.

Referenced by TCmpTripleByVal3< TVal1, TVal2, TVal3 >::operator()().


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