Y
Hacker News
new
|
ask
|
show
|
jobs
by
shepherdjerred
499 days ago
Isn’t borrow checking only compile time?
1 comments
SkiFire13
499 days ago
Yes, but sometimes it forces you to write slightly slower code that can be proven safe.
link
spoiler
499 days ago
You don't need s whole compiler for that... You can use `unsafe`. Sometimes you don't even need that either!
link
andrepd
497 days ago
> forces you
Definitely doesn't, you can just slap unsafe and manipulate raw pointers if that's what you want
link