/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

usingstdcpp.org
| | herbsutter.com
2.3 parsecs away

Travel
| | [Edited to add C++20 schedule at end] On Saturday March 17, the ISO C++ committee completed its winter meeting in Jacksonville, Florida, USA, hosted with thanks by the Standard C++ Foundation and Perennial. We had some 140 people at the meeting, representing 8 national bodies. As usual, we met for six days Monday through Saturday,...
| | blog.jetbrains.com
3.9 parsecs away

Travel
| | This trip report is provided by Timur Doumler, who joined the CLion team in fall 2017. You might know him from his work on the JUCE framework, the Audio Developer Conference (ADC) organization, and do
| | www.think-cell.com
5.8 parsecs away

Travel
| | [AI summary] The blog post discusses techniques for implementing compile-time size calculations for range adaptors in C++ using think-cell's library, focusing on forwarding size properties and avoiding code duplication.
| | disq.us
30.1 parsecs away

Travel
| In this text we'll have a look at a few examples that compare std::string_view against std::string. How much is std::string_view faster than standard std::string operations? Intro I was looking for some examples of string_view, and after a while, I got curious about the performance gain we might get. string_view is conceptually only a view of the string: usually implemented as[ptr, length].