|
|
|
|
|
by johncolanduoni
3297 days ago
|
|
No, if you call a safe function that does memory checks (like accessing a Vec by index) in an unsafe block the compiler still emits checks. You need to explicitly call the unsafe versions of those operations to remove the check. |
|