How to write more reliable code - Egor Bredikhin - Meeting C++ 2018
A great talk on how to write reliable code
How to write more reliable code
by Egor Bredikhin
February 10-15, Hagenberg, Austria
March 19-21, Madrid, Spain
April 1-4, Bristol, UK
June 16-21, Sofia, Bulgaria
By Meeting C++ | Feb 22, 2019 06:43 AM | Tags: meetingcpp intermediate experimental c++17 c++14 c++11 basics advanced
A great talk on how to write reliable code
How to write more reliable code
by Egor Bredikhin
By Meeting C++ | Feb 18, 2019 08:05 AM | Tags: tmp performance meetingcpp intermediate experimental efficiency compiletime c++20 c++17 c++14 c++11 basics advanced
A great talk about the possibilities of generic programming at compile time
Compile time regular expressions
by Hana Dusíková
By Meeting C++ | Feb 17, 2019 06:45 AM | Tags: performance meetingcpp intermediate experimental efficiency c++11 advanced
Next video from the B Track at Meeting C++:
pinned_vector
by Miro Knejp & Jakob Schweißhelm
By Meeting C++ | Feb 13, 2019 05:38 AM | Tags: performance meetingcpp intermediate functional programming fp experimental efficiency c++17 advanced
HOFs explained by Björn Fahller
Higher Order Functions for ordinary developers
by Björn Fahller
By Adrien Hamelin | Feb 11, 2019 01:00 PM | Tags: experimental community
The future.
Coroutine TS a new way of thinking
by Andreas Reischuck
From the article:
Coroutine TS a new way of thinking
Andreas Reischuck
Meeting C++ 2018
By Meeting C++ | Feb 9, 2019 04:59 AM | Tags: tmp meetingcpp intermediate experimental c++17 c++14 c++11 basics advanced
Ivan Cukic on TMP and ...
A new look at TMP
by Ivan Cukic
By Meeting C++ | Feb 1, 2019 06:16 AM | Tags: meetingcpp intermediate functional programming experimental c++17 basics advanced
Phil Nash presenting on your options with Optional
Option(al) is not a failure
by Phil Nash
By Meeting C++ | Jan 18, 2019 06:54 AM | Tags: tmp reflection meetingcpp intermediate experimental c++14 advanced
First talk from Meeting C++ is released:
Better C++14 reflections
by Antony Polukhin
By Adrien Hamelin | Jan 17, 2019 01:31 PM | Tags: experimental
Exciting!
Exploring C++20 - Class Types in Non-Type Template Parameters
by Tobias Widlund
From the article:
If I had to pick out my favourite features planned for C++20, then this one would definitely be amongst the top 5 since I love compile time programming. This feature makes it more natural to write templated code since it allows you to group data together and pass it to a template without having to resort to hacks.
To explain what this feature is about, I will start by talking about normal non-type template parameters from pre-C++20...
By Adrien Hamelin | Jan 14, 2019 02:03 PM | Tags: experimental
Simple, good.
The overview of C++20 Range view
by Ryou Ezoe
From the article:
The latest C++ draft at the time of writing incorporated The One Ranges Proposal.
http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/n4791.pdf
So what is a Range, anyway? The C++ Standard Comittee member, Eric Niebler, summarised it well in this article:
Eric Niebler – Eric Niebler
Actually, he summarised it all too well to the point that his code became almost unreadable to an average C++ programmer. One might say, it's practically useless. So this article serves as a quick tutorial for the Range view...