You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
intro: What does the unsafe block means? (can't be proved safe by the compiler), should be used sparingly, first suspect in case of a segfault, should be treated as a red flag by the code reviewer
Dereferencing raw pointers
std::mem::transmute raw pointers -> references
asm!
We probably want to add:
static mut
The text was updated successfully, but these errors were encountered:
Hi, I'm closing this issue just to clean up the items that already exist. If you think this issue makes sense to stay open, please create a new issue with updated information and mention this one.
The current chapter needs to be split:
unsafe
block means? (can't be proved safe by the compiler), should be used sparingly, first suspect in case of a segfault, should be treated as a red flag by the code reviewerstd::mem::transmute
raw pointers -> referencesasm!
We probably want to add:
static mut
The text was updated successfully, but these errors were encountered: