Viewing a single comment thread. View all comments

relefos t1_itvqq8n wrote

I 100% agree, just clarifying that under flow has nothing to do with setting a lower bound on an int

Going lower than your lowest bound is still just overflow

Underflow is specifically when you try to represent a floating point number smaller than your float can possibly represent. ie 0.0000000001 instead of 0.00001

Just a semantics misunderstanding thing I see a lot bc it honestly is unnecessarily confusing 😂

2