https://github.com/avitase/cpp_value_categories_talk
Presentation material for iCSC 2020's talk "Demystifying Value Categories in C++"
https://github.com/avitase/cpp_value_categories_talk
icsc2020 presentation-materials presentation-slides
Last synced: 2 months ago
JSON representation
Presentation material for iCSC 2020's talk "Demystifying Value Categories in C++"
- Host: GitHub
- URL: https://github.com/avitase/cpp_value_categories_talk
- Owner: avitase
- Created: 2019-10-04T17:39:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T06:48:41.000Z (over 2 years ago)
- Last Synced: 2023-02-28T06:36:20.809Z (over 2 years ago)
- Topics: icsc2020, presentation-materials, presentation-slides
- Language: TeX
- Homepage:
- Size: 9.6 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
Presentation material for my iCSC 2020 talk "Demystifying Value Categories in C++". The [slides can be found here.](slides.pdf)# Abstract
Value categories are omnipresent in today's C++ code bases. Since the advent of move semantics the field continuously becomes wider and knowing terms such as *lvalue* and *rvalue* only from compiler error messages is not enough anymore. I will present an overview about C++ value categories and decay rules, the subtle difference between pointers and references, explain why neither `std::move` moves, nor `std::forward` forwards values and talk about implication on related topics such as RVO.