lambda2
lambda2 copied to clipboard
A C++14 Lambda Library
it seems the user defined literals can to be used as a placeholders: https://godbolt.org/z/dYh465xqz motivation: each placeholder needs to be created before use, potentially, not all placeholders will be created...
I propose to do it like in a boost.lambda. Additionally adding `aggregate` and `new_aggregated_ptr`: ``` constructor()(arg_list) T(arg_list) aggregate()(arg_list) T{arg_list} destructor()(a) a.~A(), where a is of type A destructor()(pa) pa->~A(), where...
This is part of the effort to make the Boost libraries "modular" for build and consumption. See https://lists.boost.org/Archives/boost/2024/01/255704.php and https://github.com/grafikrobot/boost-b2-modular/blob/b2-modular/README.adoc for more information. This PR depends on the following other...
Is it possible with Boost Lambda 2? Is that truth that this library forces the users to capture by value?