Help with a brain fart. What is this called?

BlitzMax Forums/BlitzMax Programming/Help with a brain fart. What is this called?

ima747(Posted 2010) [#1]
I can't for the life of me remember what this is called...

If(flags&1)
EndIf

If(flags&2)
EndIf

If(flags&4)
EndIf


Those are binary tests and I can't for the life of me remember what it's called...


Jesse(Posted 2010) [#2]
'binary bit test' or 'bitwise operations'?


Thareh(Posted 2010) [#3]
Flags? Bitwise And?
Don't really understand what you're after :D


GW(Posted 2010) [#4]
Its called a 'bitmask'