Explore >> Select a destination


You are here

lewisdale.dev
| | www.integralist.co.uk
3.3 parsecs away

Travel
| | I found myself recently trying to recall specific details of how slices work when needing to do something that meant I wanted to not mutate the underlying array data structure of the slice I was working with. Now the reason for why I wanted to do that isn't important. What's motivating this write-up is my want for a good reference document (not saying the official go blog isn't a good reference, but I have my own things I like to focus in on in these situations).
| | blog.percywegmann.com
3.6 parsecs away

Travel
| | Don't Overthink It
| | qsantos.fr
4.5 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 ?
| | syprog.blogspot.com
26.7 parsecs away

Travel
| Source code for this article may be found here . The problem of software security has already been raised in my previous articles more ...