Let's Talk About String Operations in C++17
In September our local C++ User Group started a “new year” of meetings after a little break in August. I had a pleasure to give a talk about string operations in C++17.Here are the slides and...
View ArticleC++ Links #7
Welcome to new C++ Links - most important and useful articles, podcasts and videos that happen between 13th and 19th of October.Today you will find links to all proposals that will be discussed in the...
View ArticleFive Awesome C++ Papers for San Diego
In two weeks there will be a next C++ Committee meeting. This time the group of C++ experts will travel to San Diego, and they will discuss the shape of the upcoming C++ Standards. As far as I know,...
View ArticleC++ Links #8
Welcome to new C++ Links - most important and useful articles, podcasts and videos that happen between 20th and 26th of October. Today you will find a link to the easiest papers for San Diego Meeting,...
View ArticleParallel Algorithms Chapter in C++17 In Detail
Yesterday I finally updated the book! The main point of this refresh was to provide an updated and rewritten version of the “Parallel Algorithms” chapter. “C++17 In Detail” grew by 20 pages (up to...
View ArticleC++ Links #9
Welcome to new C++ Links - most important and useful articles, podcasts and videos that happen between 3rd and 9th of November. In this week we have C++ Standards Committee meeting in San Diego, we all...
View ArticleThe Amazing Performance of C++17 Parallel Algorithms, is it Possible?
With the addition of Parallel Algorithms in C++17, you can now easily update your “computing” code to benefit from parallel execution. In the article, I’d like to examine one STL algorithm which...
View ArticleC++ Links #10
Welcome to new C++ Links - most important and useful articles, podcasts and videos that happen between 10th and 16th of November. This week we have link to another ISO C++ Standards Committee Meeting...
View ArticleHow to Boost Performance with Intel Parallel STL and C++17 Parallel Algorithms
C++17 brings us parallel algorithms. However, there are not many implementations where you can use the new features. The situation is getting better and better, as we have the MSVC implementation and...
View ArticleC++ Links #11
Welcome to new C++ Links - most important and useful articles, podcasts and videos that happen between 24th and 30th of November. In this week you can found links to blog post series about good...
View ArticleHow to Use The Newest C++ String Conversion Routines - std::from_chars
With C++17 we get another facility to handle the conversion between text and numbers. Why should we care about the new routines? Are they better in any way?Read more...
View ArticleC++ Links #12
Welcome to new C++ Links - most important and useful articles, podcasts and videos that happen between 1st and 7th of December. In this week you will find a link with learning resources from SG20...
View ArticleHow To Parallelise CSV Reader - New Chapter
Learning new language and library features in isolation might not be the best choice. That’s why in my book I also added bigger examples where many C++ elements coexist together.This time I’d like to...
View ArticleC++ at the End of 2018
2018 is almost over (just a few hours left in Poland till midnight). As in previous years, I did a summary of many things that happened in the C++ community. This year seems to be marked with a solid...
View ArticleC++ Links #13
Welcome to new C++ Links - most important and useful articles, podcasts and videos that happen between 29th December 2018 and 4th of January 2019. We are back after a month break - we hope that we...
View ArticleC++ Links #14
Welcome to new C++ Links - most important and useful articles, podcasts and videos that happen between 5th and 11th of January 2019. This week you will link to post about over complicated...
View ArticleHow to get File Size in C++?
Before C++17 we could often complain that even simple tasks as getting a file size were complicated. With std::filesystem things get a bit easier!Read more...
View ArticleC++ Links #15
Welcome to new C++ Links - most important and useful articles, podcasts and videos that happen between 12th and 18th of January 2019. In this week you may find the final answer how to get the size of...
View Articlestd:filesystem::file_size Advantages and Differences
Subtitle: Learning std::filesystem through file_size routines.Last week I wrote a short post that explained how to use std::filesystem::file_size. Today I’d like to continue and show some significant...
View ArticleC++ Links #16
Welcome to new C++ Links - most important and useful articles, podcasts and videos that happen between 19th and 25th of January 2019. This week you will find a link to a ray-tracer, real-life examples...
View Article