now i just wanna get an educated response on this cause i honestly am not sure if theres any benefit of one over the other.. and if there is, if its really enough of a benefit to make any difference
but say you have an if statement like this:
Code:
if(!this || !that || !something || !etc || whatever || evenmore || !yadayada)
return FMRES_IGNORED
im being told by someone that this is a better way to do it:
Code:
if(!this || !that)
return FMRES_IGNORED
if(!something || !etc)
return FMRES_IGNORED
if(whatever || evenmore)
return FMRES_IGNORED
if(!yadayada)
return FMRES_IGNORED
so just hoping to get some clarification on this...
__________________