XIEITE_LIFT(), XIEITE_LIFT_LOCAL(), XIEITE_LIFT_M(), XIEITE_LIFT_M_PTR()

Defined in header <xieite/pp/lift.hpp>

Wraps a function in a lambda object.


Definitions

#lift
#define XIEITE_LIFT(...) /* []??? { ??? } */
Expands to a lambda expression with no capture-default, a static specifier, and variadic forwarding reference parameters.

#lift-local
#define XIEITE_LIFT_LOCAL(...) /* [&]??? { ??? } */
Expands to a lambda expression with a reference capture-default and variadic forwaring reference parameters.

#lift-m
#define XIEITE_LIFT_M(...) /* []??? { ??? } */
Same as #lift but calls a member of its first parameter with the rest of its parameters.

#lift-m-ptr
#define XIEITE_LIFT_M_PTR(...) /* []??? { ??? } */
Same as #lift-m but accesses a member through operator->().


Example

void run(auto fn) {
	fn("Hello, world!");
}

int main() {
	run(XIEITE_LIFT(xieite::dump));
}
Output:
Hello, world!
[View in Compiler Explorer]