You are here |
raphlinus.github.io | ||
| | | |
blog.sigplan.org
|
|
| | | | "Undefined Behavior" often has a bad reputation. But what, really, is Undefined Behavior, and is it actually that bad? In this blog post, I will look at this topic from a PL perspective... | |
| | | |
www.ralfj.de
|
|
| | | | This summer, I am again working on Rust full-time, and again I will work (amongst other things) on a "memory model" for Rust/MIR. However, before I can talk about the ideas I have for this ... | |
| | | |
qsantos.fr
|
|
| | | | So Many Bugs So, you've been programming for one month, or for ten years, and you have gotten familiar with Murphy's and Sturgeon's laws. And you are wondering if there is some way to catch all the bugs, not just spray-and-pray with regression/unit/integration/system/acceptance testing. Or you are a curious onlooker, wondering why all these programmers ... Continue reading Why Undefined Behavior Matters ? | |
| | | |
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 ? |