Vocabularymath.
bitwiseInputsOutputsWord descriptionReturns true if all of the bits in the mask
n are set in the integer input
x.
ExamplesUSING: math.bitwise kernel prettyprint ;
0xff 0xf mask? .
t
USING: math.bitwise kernel prettyprint ;
0xf0 0x1 mask? .
f
Definition