On 8/2/06, Frank Barknecht fbar@footils.org wrote:
Hallo, Christian Klippel hat gesagt: // Christian Klippel wrote:
if pd provides the bitwise and operator, you may simply check the number for its lowest bit ( & 0x01 )... if set, its uneven, if clear, its an even number. this works only on integers of course.
This is a good idea. THe object to use is [& 1] as in attached patch.
Is this more efficient?