(986a3bf)
Go to the source code of this file.
◆ FOR_EACH
#define FOR_EACH |
( |
|
type, |
|
|
|
iter, |
|
|
|
array |
|
) |
| |
Value: for (type iter = array.begin(), \
iter##_fend = array.end(); iter != iter##_fend; ++ iter)
Definition at line 25 of file foreach.h.
◆ FOR_EACH_SAFE
#define FOR_EACH_SAFE |
( |
|
type, |
|
|
|
iter, |
|
|
|
array |
|
) |
| |
Value: for (type iter = array.begin(); \
iter != array.end(); ++ iter)
Definition at line 34 of file foreach.h.
◆ FOR_EACHP
#define FOR_EACHP |
( |
|
type, |
|
|
|
iter, |
|
|
|
array |
|
) |
| |
Value: for (type iter = array->begin(), \
iter##_fend = array->end(); iter != iter##_fend; ++ iter)
Definition at line 31 of file foreach.h.
◆ FOR_EACHR
#define FOR_EACHR |
( |
|
type, |
|
|
|
iter, |
|
|
|
array |
|
) |
| |
Value: for (type iter = array.rbegin(), \
iter##_fend = array.rend(); iter != iter##_fend; ++ iter)
Definition at line 28 of file foreach.h.