Phantastic Code Smells and where to find them - Arne Mertz - Meeting C++ 2019
A new talk from Meeting C++ 2019
Phantastic Code Smells and where to find them
by Arne Mertz
June 16-21, Sofia, Bulgaria
September 13-19, Aurora, CO, USA
November 6-8, Berlin, Germany
November 16-21, Kona, HI, USA
By Meeting C++ | Dec 18, 2019 02:14 AM | Tags: meetingcpp intermediate efficiency basics advanced
A new talk from Meeting C++ 2019
Phantastic Code Smells and where to find them
by Arne Mertz
By Meeting C++ | Dec 12, 2019 08:05 AM | Tags: meetingcpp intermediate concepts c++20 basics
A new video from Meeting C++ 2019
Concepts - Evolution or Revolution - Rainer Grimm - Meeting C++ 2019
by Rainer Grimm
By Meeting C++ | Dec 8, 2019 07:33 AM | Tags: walter e. brown security performance meetingcpp intermediate community code bugs basics advanced
Walter E. Browns Meeting C++ 2019 Closing Keynote:
Crazy Code and Crazy Coders - Walter E. Brown - Closing Keynote Meeting C++ 2019
by Walter E. Brown
By Meeting C++ | Dec 7, 2019 09:39 AM | Tags: meetingcpp machinelearning intermediate experimental community basics artificialintelligence ai advanced
The Center Keynote from Meeting C++ 2019 is online:
Can AI replace programmers? - Frances Buontempo - Meeting C++ 2019 Center Keynote
by Frances Buontempo
By Meeting C++ | Dec 6, 2019 10:42 AM | Tags: performance meetingcpp intermediate howard hinnant experimental efficiency community chrono c++20 c++17 c++14 c++11 basics advanced
The first keynote of this years Meeting C++ conference is online:
Opening Keynote Meeting C++ 2019 - Howard Hinnant - Design Rationale for the chrono Library
by Howard Hinnant
By Meeting C++ | Dec 5, 2019 10:06 AM | Tags: meetingcpp intermediate community c++20 c++17 c++11 basics advanced
The lightning talks from Meeting C++ 2019 are now online!
Meeting C++ Youtube Channel
by Jens Weller
From the article:
A few lightning talks I'd like to point to:
Finding hard to find bugs with Address Sanitizer - Marshall Clow
Consistently Inconsistent - Conor Hoekstra
By Adrien Hamelin | Nov 18, 2019 12:42 PM | Tags: c++11 basics
The power of the brace.
5 Ways Using Braces Can Make Your C++ Code More Expressive
by Jonathan Boccara
From the article:
A lot of languages use braces to structure code. But in C++, braces are much more than mortar for holding blocks of code together. In C++, braces have meaning.
Or more exactly, braces have several meanings. Here are 5 simple ways you can benefit from them to make your code more expressive...
By Meeting C++ | Oct 22, 2019 04:58 AM | Tags: meetingcpp intermediate events conference community c++17 c++14 c++11 basics
Some details on the keynotes of this years Meeting C++ conference
Keynote details for Meeting C++ 2019
by Jens Weller
From the article:
With just a few weeks left to Meeting C++ 2019, its time for a closer look at the keynotes!
By Meeting C++ | Sep 9, 2019 12:48 AM | Tags: meetingcpp efficiency conference community basics advanced
Also available in this year: the programs for students and diversity & support for Meeting C++ 2019
Highlighting the Student and Support Tickets for Meeting C++ 2019
by Jens Weller
From the article:
With the Schedule for Meeting C++ 2019 being complete regarding submitted talks, I want to highlight, that there is an opportunity for folks to attend the conference with a free ticket!
By Adrien Hamelin | Sep 6, 2019 11:00 AM | Tags: c++11 basics
Quick A: it is not possible
Recently on SO:
Removing item from vector, while in C++11 range 'for' loop?
No, you can't. Range-based for is for when you need to access each element of a container once.
You should use the normal for loop or one of its cousins if you need to modify the container as you go along, access an element more than once, or otherwise iterate in a non-linear fashion through the container.
For example:
auto i = std::begin(inv); while (i != std::end(inv)) { // Do some stuff if (blah) i = inv.erase(i); else ++i; }