#include <Q.h>Include dependency graph for Qstl.h:

Go to the source code of this file.
Defines | |
| #define | _Qstl_h_ 1 |
| #define | AO(name, container, predicate) |
| #define | EO(name, container, predicate) |
| #define | E1O(name, container, predicate) |
| #define | CO(name, container, predicate) |
| #define | SO(name, container, exprn) |
| #define | PO(name, container, exprn) |
|
|
|
|
|
Value: ({ \
typedef typeof(container) _Qstl_type_; \
A(_Qstl_type_::iterator name = container.begin(), \
name != container.end(), \
++name, \
predicate); \
})
|
|
|
Value: ({ \
typedef typeof(container) _Qstl_type_; \
C(_Qstl_type_::iterator name = container.begin(), \
name != container.end(), \
++name, \
predicate); \
})
|
|
|
Value: ({ \
typedef typeof(container) _Qstl_type_; \
E1(_Qstl_type_::iterator name = container.begin(), \
name != container.end(), \
++name, \
predicate); \
})
|
|
|
Value: ({ \
typedef typeof(container) _Qstl_type_; \
E(_Qstl_type_::iterator name = container.begin(), \
name != container.end(), \
++name, \
predicate); \
})
|
|
|
Value: ({ \
typedef typeof(container) _Qstl_type_; \
P(_Qstl_type_::iterator name = container.begin(), \
name != container.end(), \
++name, \
exprn); \
})
|
|
|
Value: ({ \
typedef typeof(container) _Qstl_type_; \
S(_Qstl_type_::iterator name = container.begin(), \
name != container.end(), \
++name, \
exprn); \
})
|
1.3.4