andioop@programming.dev to Programming Horror@programming.devEnglish · edit-21 year agoGod I wish there was an easier way to do thisprogramming.devimagemessage-square32fedilinkarrow-up115arrow-down11
arrow-up114arrow-down1imageGod I wish there was an easier way to do thisprogramming.devandioop@programming.dev to Programming Horror@programming.devEnglish · edit-21 year agomessage-square32fedilink
minus-squareNullPointer@programming.devlinkfedilinkarrow-up1·1 year agohere is somewhat less: return (number % 2) == 0;
here is somewhat less:
return (number % 2) == 0;
return !(number & 1);