|
You are here |
grosser.it | ||
| | | | |
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 ? | |
| | | | |
dogweather.dev
|
|
| | | | | Ruby now has three distinct mechanisms for matching values case/when: the older form, based on ===. case/in: the newer structural pattern matching (Ruby 2.7+). => operator: an inline pattern assertion that raises if it fails. That's the high-level summary. Each behaves differently and is worth knowing in detail. After programming in Ruby for years, I... | |
| | | | |
ryanbigg.com
|
|
| | | | | Decorating arrays with SimpleDelegator | |
| | | | |
stenbrinke.nl
|
|
| | | This post introduces my Readme Auto Open project, which helps teams onboard faster by automatically opening README files in VSCode! | ||