CppCon
http://CppCon.org
—
Presentation Slides, PDFs, Source Code and other presenter materials are available at: https://github.com/CppCon/CppCon2017
—
Value semantics has been promoted in the C++ community for a long time, for reasons such as referential transparency, avoidance of memory management issues, and even efficiency in some cases. Move semantics in C++11 was a big step in language-level support for value semantics. In this talk, we’ll cover steps taken in C++17 for enhanced library-support for value semantics. Specifically, we’ll focus on `std::optional`, `std::variant`, and `std::any`.
We’ll discuss what they are, their motivating use cases, and most importantly, identify existing patterns that can be improved by replacing it with one of these utilities. We’ll also cover some of the details such as: `std::monostate`, `std::variant`’s `valueless_by_exception` state, subtle difference in behavior between `std::optional<T>` and `std::variant<std::monostate, T>`, etc.
The goal of the talk is to inform you of new library features in C++17, and to convince you of their usefulness and ultimately to add them to your toolbox.
—
Michael Park: Mesosphere, Software Engineer
I’m a committer for the Apache Mesos project, and work as a Distributed Systems Engineer at Mesosphere. Within the realm of computer science, I’m very much intrigued by language design, compiler construction, and distributed systems. I’m also an active member of the ISO C++ Standards Committee.
—
Videos Filmed & Edited by Bash Films: http://www.BashFilms.com .
Now for completeness we need exhaustive matching for std::optional and std::variant
I was just watching this great talk, and Michael got to the part about kill(-1). So I googled "man kill" to get the spec up. Is the FBI going to investigate me now?!
I liked this talk, but I feel like he wasn't as prepared as he could've been. Also, while it's good for him to be proud of the work he's done on the standard (it's impressive work) being more up-front about it combined with softening it with humor is good in front of an audience.
Watch the talks of some other people who've done really impressive work.
We are not giving you academic papers, nor teaching you english, we know better how to do things, there is no fault anywhere or there??? we need to drop something somewhere, if there is so, consider we need to do that.
It seems educational systems to be changed, because universities producing STUPIDS.
Why doesn't optional support reference types?