MySQL 9.1.0
Source Code Documentation
|
A helper template to statically unroll a loop with a fixed number of iterations, where the iteration number itself is constexpr. More...
Static Public Member Functions | |
template<typename Step_executor , typename... Args> | |
static void | run (Args &&...args) |
A helper template to statically unroll a loop with a fixed number of iterations, where the iteration number itself is constexpr.
So, instead of:
Something::template run<0>(a,b); Something::template run<1>(a,b); Something::template run<2>(a,b);
you can write:
Loop<3>::template run<Something>(a, b);
|
inlinestatic |