/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

sergioprado.blog
| | thasso.xyz
4.4 parsecs away

Travel
| | My personal blog about things I find interesting. Hit me up!
| | qsantos.fr
4.6 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
| | artem.krylysov.com
5.7 parsecs away

Travel
| | [AI summary] The article explains how to handle C++ exceptions within Go programs by creating a C wrapper using C++ that catches exceptions and returns error messages to the Go routine.
| | baptiste-wicht.com
26.3 parsecs away

Travel
| Variadic Templates C++11 introduced variadic template to the languages. This new feature allows to write template functions and classes taking an arbitrary number of template parameters. This a featur