Explore >> Select a destination


You are here

rachelcarmena.github.io
| | noelwelsh.com
1.9 parsecs away

Travel
| | [AI summary] This article explains the core principles of functional programming, focusing on local reasoning and composition as its main goals, and discusses how these concepts apply to code structure and maintainability.
| | alexn.org
2.1 parsecs away

Travel
| |
| | henko.net
1.6 parsecs away

Travel
| | A selection of functional programming concepts that I feel are helpful to all developers.
| | qsantos.fr
37.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 ?