Memory safety in C++, Zig, & Rust (part 1) [video]

Code: https://github.com/contextfreecode/safety0:00 Intro0:27 == C++ (cpp) ==1:30 Returning expired memory3:09 Pointers and values4:02 Analyzing memory error… Read more

Similar

The Usability of Ownership in Rust

Ownership is the concept of tracking aliases and mutations to data, useful for both memory safety and system design. The Rust programming language implements ownership via the borrow checker, a static analyzer that extends the core type system. The borrow... (more…)

Read more »