Next Generation Debugging - Julian Smith - Meeting C++ 2016
Next video from Meeting C++ 2016:
Next Generation Debugging
Julian Smith
March 19-21, Madrid, Spain
April 1-4, Bristol, UK
June 16-21, Sofia, Bulgaria
By Meeting C++ | Jan 19, 2017 07:15 AM | Tags: intermediate efficiency debugging debug
Next video from Meeting C++ 2016:
Next Generation Debugging
Julian Smith
By Adrien Hamelin | Jan 18, 2017 03:04 PM | Tags: intermediate c++11
A new interesting video:
Engineering Distinguished Speaker Series: Howard Hinnant
by Inside Bloomberg
From the video:
Howard Hinnant spoke at Bloomberg presenting everything you need to know about move semantics.
By Meeting C++ | Jan 17, 2017 04:49 AM | Tags: ranges iterators intermediate experimental efficiency advanced
Next video from Meeting C++ 2016:
Why iterators got it all wrong
by Arno Schödl
By Adrien Hamelin | Jan 16, 2017 12:55 PM | Tags: intermediate boost
Ranges are coming!
Ranges: the STL to the Next Level
by Jonathan Boccara
From the article:
The C++ Standard Template Library (STL) is a fantastic tool for making code more correct and expressive. It is mainly composed of two parts:
- The containers, such as std::vector or std::map for instance,
- The algorithms, a fairly large collection of generic functions that operate amongst others on containers. They are mostly found under the algorithm header.
By Meeting C++ | Jan 13, 2017 07:08 AM | Tags: sg14 intermediate gamedev basics
A short talk on what SG14 is doing
SG14 (the GameDev & low latency ISO C++ working group)
Guy Davidson
By Meeting C++ | Jan 12, 2017 09:47 AM | Tags: tmp meta-programming intermediate c++14 c++11 advanced
New Video from Meeting C++ 2016:
How bad is meta-programming still today?
Peter Gottschling
By Jason Turner | Jan 12, 2017 09:40 AM | Tags: intermediate c++14
Episode 45 of C++ Weekly.
Compile Time Maze Generator (and Solver)
by Jason Turner
About the show:
In this episode Jason demonstrates how to build a random maze generator (and solver) that can be executed at compile time with constexpr.
By Adrien Hamelin | Jan 11, 2017 12:59 PM | Tags: intermediate experimental
Sorting can be done many ways.
A “sorted view”
by Nick Athanasiou
From the article:
This installment elaborates on the creation of a “sorted_view” utility. The “References” section contains links to the complete code; throughout the article, we provide demos and snippets to showcase and explain the implementations. The section on modernizing the code contains real world applications of the following C++17 features:
- structured bindings
- template argument deduction for class templates
By Adrien Hamelin | Jan 11, 2017 12:56 PM | Tags: performance intermediate
It seems a simple problem, yet…
Applying a permutation to a vector, part 6
by Raymond Chen
From the article:
I left an exercise to write a function apply_reverse_permutation in which each element in the indices represents where the element should move to rather than where it comes from...
By Adrien Hamelin | Jan 11, 2017 12:54 PM | Tags: performance intermediate
It seems a simple problem, yet…
Applying a permutation to a vector, part 5
by Raymond Chen
From the article:
Our apply_permutation function assumes that the integers form a valid permutation. Let's add error checking...