▲ | do_not_redeem 3 days ago | |||||||||||||
This conversation would benefit from using more rigorous technical terminology than "namby pampy". There is nothing namby pamby about allocating the precise amount of space that you need, and keeping your app's memory footprint optimized. That's called engineering. | ||||||||||||||
▲ | throwawaymaths 3 days ago | parent [-] | |||||||||||||
real question: what are you going to do with the rest of the stack? are you in a situation where the stack and the heap might collide because you're that tight on resources? and let's say you take a function call that is about to overflow the stack. what should happen? error? panic? return null? silent fail? there are no good choices in the case where you really need that thing you claim to need. recognizing that fact and picking different strategy is good engineering. | ||||||||||||||
|