andioop@programming.dev to Programming Horror@programming.devEnglish · edit-21 year agoGod I wish there was an easier way to do thisprogramming.devimagemessage-square25fedilinkarrow-up12arrow-down10
arrow-up12arrow-down1imageGod I wish there was an easier way to do thisprogramming.devandioop@programming.dev to Programming Horror@programming.devEnglish · edit-21 year agomessage-square25fedilink
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);