Explore >> Select a destination


You are here

grosser.it
| | qsantos.fr
5.9 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 ?
| | dogweather.dev
9.4 parsecs away

Travel
| | 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
5.9 parsecs away

Travel
| | Decorating arrays with SimpleDelegator
| | stenbrinke.nl
30.3 parsecs away

Travel
| This post introduces my Readme Auto Open project, which helps teams onboard faster by automatically opening README files in VSCode!