Using unwrap() in Rust is Okay

from blog Andrew Gallant's Blog on Andrew Gallant's Blog, | ↗ original
One day before Rust 1.0 was released, I published a blog post covering the fundamentals of error handling. A particularly important but small section buried in the middle of the article is named “unwrapping isn’t evil”. That section briefly described that, broadly speaking, using unwrap() is okay if it’s in test/example code or when panicking...