| libgrape-lite
    A C++ library for parallel graph processing | 
IteratorPair is a wrapper for begin and end iterators. More...
#include <iterator_pair.h>
| Public Member Functions | |
| IteratorPair (const T begin, const T end) | |
| T | begin () const | 
| T | end () const | 
| IteratorPair & | operator= (const IteratorPair &ip) | 
| bool | empty () const | 
| void | set_begin (T begin) | 
| void | set_end (T end) | 
| int | size () const | 
| Private Attributes | |
| T | begin_ | 
| T | end_ | 
IteratorPair is a wrapper for begin and end iterators.
| T | The type of data type will be iterated over. |