eĿlipsis
a language independent preprocessor
 
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Loading...
Searching...
No Matches
ellipsis-lambda.h
Go to the documentation of this file.
1#include_directives<ellipsis-trigger.h> __prefix__(bind TRIGGER_NAME LAMBDA)
2
3#define CAPTURE(...) __VA_OPT__(CAPTURE_(CAPTURE_NAME(__INCREMENT__(__CAPTURE_COUNT__)), __VA_ARGS__))
4#define RECAP(...) __VA_OPT__(RECAP_(CAPTURE_NAME(__CAPTURE_COUNT__), __VA_ARGS__))
5
6#ifdef DOXYGEN_SPECIAL
7#define LAMBDA(RET, ...)
8#else
9#define CAPTURE_(V, ...) \
10 /*^*/ \
11 __BIND__((C, ...) /*^*/ [[__maybe_unused__]] auto const __MULTI__(V, C) = C __BIND_OPT__(;) __BIND_TAIL__())(__VA_ARGS__)
12
13#define RECAP_(V, ...) \
14 /*^*/ \
15 __BIND__((C, ...) /*^*/ [[__maybe_unused__]] auto const C = __MULTI__(V, C) __BIND_OPT__(;) __BIND_TAIL__())(__VA_ARGS__)
16
17#define CAPTURE_NAME(X) _CAPTURE_ ## X
18
19#define LAMBDA_START(RET, ...) (⸤{⸥ /*^*/ [[gnu::always_inline]] inline RET LAMBDA_NAME(__INCREMENT__(__LAMBDA_COUNT__)) (__VA_ARGS__)
20#define LAMBDA_CLOSE() /*^*/ LAMBDA_NAME(__LAMBDA_COUNT__); /*^*/ ⸤}⸥)
21#define LAMBDA_NAME(X) _LAMBDA_ ## X
22
23#endif