Open steveklabnik opened 8 years ago
So uh, I thought there were more, but there's only one, in str_to_cstring
.
Still worth removing.
This one is tough. Libraries shouldn't panic; but the situation in which this doesn't work is when a string has interior nulls, which shouldn't happen often. But still:
So, I'm not sure how to tackle this one, exactly...
As a long-term project, I would like to get rid of the unwraps and convert to
Result<T, E>
-based handling.