Explore >> Select a destination


You are here

gsomix.github.io
| | ketansingh.me
10.2 parsecs away

Travel
| | A place for me to share my thoughts, experiences, and insights on technology relevant to enthusiasts and hackers like myself
| | qsantos.fr
11.8 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 ?
| | www.foonathan.net
12.0 parsecs away

Travel
| | Let me share a useful insight with you: constexpr is a platform. Just like you write code that targets Windows or a microcontroller, you write code that targets compile-time execution. In both cases you restrict yourself to the subset of C++ that works on your target platform, use conditional compilation if your code needs to be portable, and execute it on the desired target platform. You can thus view constexpr as another platform you can target; it just so happens to be run by your compiler. This insig...
| | meicheesecake.neocities.org
33.9 parsecs away

Travel
| This whole thing is only 220 lines of code and most of them are used to assemble the UI because Tkinter is atrocious.