|
You are here |
rachelcarmena.github.io | ||
| | | | |
noelwelsh.com
|
|
| | | | | [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
|
|
| | | | | ||
| | | | |
henko.net
|
|
| | | | | A selection of functional programming concepts that I feel are helpful to all developers. | |
| | | | |
qsantos.fr
|
|
| | | 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 ? | ||