From Paul Fultz II's article:
Static Lambdas: Initializing lambdas at compile time
Interesting tricks that he had applied.
Instead of initializing lambda object at program start-up.
Idea:
1.
lambda expression object is generated during run-time;
however, the type itself for sure is completed during compile time.
2.
Extract the lambda expression type thus could be used for constexpr variable.
Steps:
1.
Extract ptr to lambda expression type.
Of course, use template function to deduce :-)
this function is not constexpr due to it's parameter isn't literal type.
--
2.
A constexpr template function could extract the type:
Wrapper<T> explained later.
--
3.
GetPtrToLambda([](auto i){cout << i << endl;})
will be run on runtime; however, we only need the type at compile time.
Trick Paul Fultz did:
--
--
i.e, will get a ptr to lambda expression type but point to null.
4.
i.e:
--
--
Now we have the Wrapper<T> while T is the lambda expression type.
5.
Wrapper is straight forward:
A stateless Wrapper of size 1 byte.
T is the type of lambda expression type.
This works only for stateless lambda expression type.
--
6.
The binary size of the code is roughly the same as simply do:
7.
Full code:
----
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.