C++

320 readers
1 users here now

A place for C++ programmers discuss articles and news about programming in C++ and the language itself

founded 1 year ago
MODERATORS
1
 
 

We've been promised modules for years now, but I haven't heard of anybody using them in a professional setting yet.

Has anybody here been using them seriously?

2
3
4
 
 

Essentially, the suggestion is:

  • Execution
  • More Ranges work
  • Reflection
  • Contracts
  • Pattern matching

What would you like to see?

5
3
C++ Core Guidelines (isocpp.github.io)
submitted 1 year ago* (last edited 1 year ago) by niq@discuss.tchncs.de to c/cpp@discuss.tchncs.de
 
 

From the submission:

“Within C++ is a smaller, simpler, safer language struggling to get out.” – Bjarne Stroustrup

The C++ Core Guidelines are a collaborative effort led by Bjarne Stroustrup, much like the C++ language itself. They are the result of many person-years of discussion and design across a number of organizations. Their design encourages general applicability and broad adoption but they can be freely copied and modified to meet your organization’s needs.

The aim of the guidelines is to help people to use modern C++ effectively. By “modern C++” we mean C++11 and C++14 (and soon C++17). In other words, what would you like your code to look like in 5 years’ time, given that you can start now? In 10 years’ time?

6
7