On 2020-09-08 18:00, Peter Dimov via Boost wrote:
Greetings,
Some time ago I wrote a blog post, https://pdimov.github.io/blog/2020/07/22/a-c14-lambda-library/, which described how a simple lambda library can be implemented in ~50 lines using the facilities already available in C++14's <functional> standard header.
I turned this into a mini-library, https://github.com/pdimov/lambda2, and I'd like to submit that to Boost.
I'm looking for a review manager. The library is trivial, so managing the review should be as easy as theoretically possible for a Boost review.
Looking at the code, I wonder why there is "using namespace std::placeholders". Shouldn't there be a separate namespace for placeholders? (I also think, it goes against our header policies.)