Where do I find currently discussed proposals to the C++ standard [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
There's always several things that are proposed to be included to the next c++ standard
How do I find a list of them?
Ho do I find some specific proposal I've heard of (by name, for example Ranges TS or Concurency TS)
If I have some document how do I know if it is a current version?

Related

Is there a C++ formatter following Google coding style? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 days ago.
Improve this question
cpplint gives a long list of style issues, my code is thousand lines, it will take me forever to update the code to satisfy cpplint. Is there a C++ formatter tool which can automatically re-format the code, as close as possible to Google C++ coding style?

How to debug code with std::optional or std::variant? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
It doesn't matter if I use libc++, libstdc++ neither gdb nor lldb can visualise std::optional or std::variant. I have googled a little but I didn't come across an obvious solution.
Have I missed any pretty-printers?

Are there utilities to generate C bindings for C++ libraries? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Obviously there's no perfect way to do this, since at the very least, there's no perfect way to make a C interface to C++ generics. But are there any utilities that take a stab at this sort of thing? (e.g. by being given a list of template instantiations).

Implementing Reflection in C++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I have been interesting implementing Reflection in C++, I have a slapped together Reflection, but I am interested in seeing how others have it done. Does anyone know any tutorials, articles or sample code on how to do this?
http://lcgapp.cern.ch/project/architecture/ReflectionPaper.pdf

XML-RPC library for C++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
What libraries are available for writing xml-rpc clients in native C++ or C?
You might want to check out either xmlrpc-c or xmlrpc++.
I found a list of xml-rpc implementations in many different languages. Hopefully this list will be useful to others.