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
Is your feature request related to a problem? Please describe.
Often panics may hide deep inside our code without any indication. Fast discovery of that kind of bugs may help build fast, reliable and guaranteed code. Monoio already have work with that in #257.
Describe the solution you'd like
A no_panic macro, which guarantees at compile time, that function can't ever panic.
Describe alternatives you've considered
Doing nothing about it.
The text was updated successfully, but these errors were encountered:
no_panic may have false positive result I think. Makeing the code pass it maybe a hard problem. I also have a similar try here but it can only work under simple cases.
Is your feature request related to a problem? Please describe.
Often panics may hide deep inside our code without any indication. Fast discovery of that kind of bugs may help build fast, reliable and guaranteed code. Monoio already have work with that in #257.
Describe the solution you'd like
A no_panic macro, which guarantees at compile time, that function can't ever panic.
Describe alternatives you've considered
Doing nothing about it.
The text was updated successfully, but these errors were encountered: