VocabularymathInputsOutputsWord descriptionOutputs a new integer where each bit is set if and only if the corresponding bit is set in at least one of the inputs.
ExamplesUSING: math prettyprint ;
0b101 0b10 bitor .b
0b111
USING: math prettyprint ;
0b110 0b10 bitor .b
0b110
NotesThis word implements bitwise inclusive or, so applying it to booleans will throw an error. Boolean inclusive or is the
and word.
DefinitionMethods