You are here |
www.cppstories.com | ||
| | | |
cppstories.com
|
|
| | | | C++11 conformance GCC 4.81 - 100% Clang 3.3 - 100% Intel 14.0 - 84% Visual C++ 2013 - 66% Another year is almost over so it is a good time to check what is going on with C++. This time more stats and real data compared to my post from the previous year. | |
| | | |
cppstories.com
|
|
| | | | The C++ Standard Library: A Tutorial and Reference (2nd Edition) by Nicolai M. Josuttis We are still waiting for some more books about new C++ standard. Fortunately for us, some authors managed to write books even before C++11 is well "domesticated". One of such examples is the book mentioned in the title of this post. | |
| | | |
www.bfilipek.com
|
|
| | | | Let's put C++17 in practice! One of the good ways to do it is to take part in a coding challenge. So together with Jonathan Boccara from Fluent C++ we invite you to participate in "The Expressive C++17 coding challenge". The Expressive C++17 coding challenge Jonathan made a few contests on his blog (for example this one), and I thought it might be fun to do something similar for C++17. | |
| | | |
rust.godbolt.org
|
|
| | pub fn mid(data: &[i32]) -> Option { if data.is_empty() { return None; } return Some(data[data.len()/2]); } |