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
#liftExpands to a lambda expression with no capture-default, a#define XIEITE_LIFT (... )/* []??? { ??? } */
static
specifier, and variadic forwarding reference parameters.#lift-local
Expands to a lambda expression with a reference capture-default and variadic forwaring reference parameters.#define XIEITE_LIFT_LOCAL (... )/* [&]??? { ??? } */
#lift-m
Same as #lift but calls a member of its first parameter with the rest of its parameters.#define XIEITE_LIFT_M (... )/* []??? { ??? } */
#lift-m-ptr
Same as #lift-m but accesses a member through#define XIEITE_LIFT_M_PTR (... )/* []??? { ??? } */
operator ->()
.Example
Output:void run (auto fn ) {fn ("Hello, world!" ); }int main () {run (XIEITE_LIFT (xieite ::dump )); }
[View in Compiler Explorer]Hello, world!