Viewing profile — bringbart
bringbart
HN member- Joined
- Fri, Oct 10, 2025, 8:52 AM UTC
- HN karma
- 6
- Public activity
- 2 items
- HN profile
- View on Hacker News ↗
About bringbart
No profile information was provided.
Recent public activity
-
comment
Comment #45536862
unsigned is easier: 'if(index >= max)' and has fewer edge cases because you don't need to worry about undefined behavior when computing index.
-
comment
Comment #45536661
>while unsigned wraparound leads to bugs which are basically impossible to find. What? unsigned sizes are way easier to check, you just need one invariant: if(x Always works, regar…