https://github.com/fschutt/errors
A bunch of examples of errors I've encountered so far, to remind myself to not do them again / analyze them later
https://github.com/fschutt/errors
Last synced: 11 months ago
JSON representation
A bunch of examples of errors I've encountered so far, to remind myself to not do them again / analyze them later
- Host: GitHub
- URL: https://github.com/fschutt/errors
- Owner: fschutt
- Created: 2018-01-15T08:36:17.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-05T21:15:00.000Z (almost 8 years ago)
- Last Synced: 2025-02-24T21:11:40.452Z (over 1 year ago)
- Language: Rust
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# errors
A bunch of examples of errors I've encountered so far, to remind myself to not do them again / analyze them later
## Other annoyances
- Casts happen without any warning so `(2_isize - 3_isize) as usize` has the same effect as "overflowing", although technically not overflowing, since it's perfectly safe.