SNAP Library 2.0, Developer Reference  2013-05-13 16:33:57
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
TCmpKeyDatByDat< TVal1, TVal2 > Class Template Reference

#include <ds.h>

List of all members.

Public Member Functions

 TCmpKeyDatByDat (const bool &AscSort=true)
bool operator() (const TKeyDat< TVal1, TVal2 > &P1, const TKeyDat< TVal1, TVal2 > &P2) const

Private Attributes

bool IsAsc

Detailed Description

template<class TVal1, class TVal2>
class TCmpKeyDatByDat< TVal1, TVal2 >

Definition at line 398 of file ds.h.


Constructor & Destructor Documentation

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

Definition at line 402 of file ds.h.

: IsAsc(AscSort) { }

Member Function Documentation

template<class TVal1 , class TVal2 >
bool TCmpKeyDatByDat< TVal1, TVal2 >::operator() ( const TKeyDat< TVal1, TVal2 > &  P1,
const TKeyDat< TVal1, TVal2 > &  P2 
) const [inline]

Definition at line 403 of file ds.h.

References TKeyDat< TKey, TDat >::Dat, and TCmpKeyDatByDat< TVal1, TVal2 >::IsAsc.

                                                                                            {
    if (IsAsc) { return P1.Dat < P2.Dat; } else { return P2.Dat < P1.Dat; }
  }

Member Data Documentation

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

Definition at line 400 of file ds.h.

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


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