/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

hackingcpp.com
| | qsantos.fr
6.2 parsecs away

Travel
| | This article will quickly explain the Rust types [T; N], &[T; N], &[T], Vec, &Vec with C code, and what the str, &str, String, OsString and CString add. Arrays and Slices Rust C [T; N] (array)Example: [i32; 100]Allocated on the stack T[N]Example: int[100]Allocated on the stack &[T; N] (array reference)Example: &[i32; 100]N is tracked at ... Continue reading Rust Strings for C Programmers
| | blog.dinaburg.org
1.7 parsecs away

Travel
| | Update: jduck pointed out that the before/after code snippets were identical. Oops. Now fixed. I'd previously given up on C++ due to ...
| | abseil.io
3.0 parsecs away

Travel
| | Battle-tested, Mom-approved
| | www.cppstories.com
44.1 parsecs away

Travel
| For C++17 everyone wanted to have concepts, and as you know, we didn't get them. But does it mean C++17 doesn't improve templates/template meta-programming? Far from that! In my opinion, we get excellent features. Read more for details. Intro Do you work a lot with templates and meta-programming? With C++17 we get a few nice improvements: some are quite small, but also there are notable features as well!