VocabularymathInputsOutputsWord descriptionComputes the bitwise complement of the input; that is, each bit in the input number is flipped.
NotesThis word implements bitwise not, so applying it to booleans will throw an error. Boolean not is the
not word.
Due to the two's complement representation of signed integers, the following two lines are equivalent:
bitnot
neg 1 -
DefinitionMethods