Y
Hacker News
new
|
ask
|
show
|
jobs
by
shepherdjerred
546 days ago
Isn’t borrow checking only compile time?
1 comments
SkiFire13
546 days ago
Yes, but sometimes it forces you to write slightly slower code that can be proven safe.
link
spoiler
546 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
544 days ago
> forces you
Definitely doesn't, you can just slap unsafe and manipulate raw pointers if that's what you want
link