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
|
#include <fl.h>
Public Member Functions | |
TCs () | |
TCs (const TCs &Cs) | |
TCs (const int &Int) | |
TCs & | operator= (const TCs &Cs) |
bool | operator== (const TCs &Cs) const |
TCs & | operator+= (const TCs &Cs) |
TCs & | operator+= (const char &Ch) |
TCs & | operator+= (const int &Int) |
int | Get () const |
Static Public Member Functions | |
static TCs | GetCsFromBf (char *Bf, const int &BfL) |
Private Attributes | |
int | Val |
Static Private Attributes | |
static const int | MxMask = 0x0FFFFFFF |
int TCs::Get | ( | ) | const [inline] |
Definition at line 25 of file fl.h.
References Val.
Referenced by TBlobBs::AssertBfCsEqFlCs().
{return Val;}
TCs TCs::GetCsFromBf | ( | char * | Bf, |
const int & | BfL | ||
) | [static] |
Definition at line 12 of file fl.cpp.
Referenced by TFRnd::GetSIn(), and TFRnd::PutSIn().
{ TCs Cs; for (int BfC=0; BfC<BfL; BfC++){Cs+=Bf[BfC];} return Cs; }
TCs& TCs::operator+= | ( | const char & | Ch | ) | [inline] |
TCs& TCs::operator+= | ( | const int & | Int | ) | [inline] |
bool TCs::operator== | ( | const TCs & | Cs | ) | const [inline] |
const int TCs::MxMask = 0x0FFFFFFF [static, private] |
Definition at line 13 of file fl.h.
Referenced by operator+=().
int TCs::Val [private] |
Definition at line 14 of file fl.h.
Referenced by Get(), operator+=(), operator=(), and operator==().