|
|
|
|
|
by tuetuopay
215 days ago
|
|
They would also tell you that .unwrap() has no place in production code, and should receive as much scrutiny as an `unsafe` block in code review :) The point of option is the crash path is more verbose and explicit than the crash-free path. It takes more code to check for NULL in C or nil in Go; it takes more code in Rust to not check for Err. |
|
2. You’re getting confused by technology again. This isn’t about technology.