|
|
|
|
|
by thayne
2230 days ago
|
|
> Runtime error checks would incur performance penalties Which is why in rust, there are many runtime checks done in debug builds but not in release builds. (Including checking for wraparound and bounds checks). The idea being that automated tests should catch the errors, assuming you wrote good tests. |
|