PicoLeaf
Results
3
comments of
PicoLeaf
I actually don't see often `unsafe {exression}` in code. What mostly happen is that there is multiples unsafes scattered over a function like this: ```rust fn init_drivers() { // do...
They prevent people from grouping multiple unsafe blocks together
> And I find this to be a bit of bad coding practice Oh yeah, that was bit far fetched. My point was more that, unsafe blocks are ugly and...