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
|
Iterator over a vector of tables. More...
#include <table.h>
Public Member Functions | |
TTableIterator (TVec< PTable > &PTableV) | |
Default constructor. More... | |
PTable | Next () |
Returns next table in the sequence and update iterator. More... | |
bool | HasNext () |
Checks if iterator has reached end of the sequence. More... | |
Private Attributes | |
TVec< PTable > | PTableV |
Vector of TTables which are to be iterated over. More... | |
TInt | CurrTableIdx |
Index of the current table pointed to by this iterator. More... | |
Default constructor.
Definition at line 437 of file table.h.
|
inline |
Checks if iterator has reached end of the sequence.
Definition at line 441 of file table.h.
|
inline |
Returns next table in the sequence and update iterator.
Definition at line 439 of file table.h.
|
private |