/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.bfilipek.com
| | oleksandrkvl.github.io
3.0 parsecs away

Travel
| |
| | isocpp.org
2.9 parsecs away

Travel
| | [AI summary] This is a comprehensive list of proposals (PXXXRYY) submitted to the C++ standards committee, covering a wide range of topics such as concurrency, memory management, type traits, algorithms, and language features. The proposals span from early drafts to more recent versions and reflect the evolution of C++ over several years.
| | www.cppstories.com
2.1 parsecs away

Travel
| | Let's take a pair of two types - what can you do with such composition? In this article, I'll describe std:optional - a new helper type added in C++17. It's a wrapper for your type and a flag that indicates if the value is initialized or not. Let's see where it can be useful and how you can use it.
| | eyakubovich.github.io
26.3 parsecs away

Travel
| It's a simple task - you want iterate over all the lines in a file and perform an action on each one. In Python it's as simple as:for line in open("somefile.txt"): print lineHow about C++11. How hard can it be? This stackoverflow post gives us a starting point. We...