Category:ProtoFlux:Operators:Boolean

Category page
Revision as of 07:11, 14 January 2024 by 989onan (talk | contribs) (Create Boolean ProtoFlux Category)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Nodes
Node Name Description
AND Returns true only if both the boolean inputs are true
MultiAND Returns true only if all the boolean inputs are true
MultiNAND Returns false only if all the boolean inputs are true
MultiNOR Returns true only if 1 or more inputs are true, but not if they are all false or all true.
MultiOR Returns true only if at least 1 or more inputs are true.
MultiXNOR
MultiXOR
NAND Returns false only if both the boolean inputs are true
NOR
NOT Returns the opposite of the input
OR Returns true only if at least 1 or both the inputs true.
Rotate Left Shifts the bytes to the left. (rounds and moves the first bit to the last)
Rotate Right Shifts the bytes to the right. (rounds and moves the last bit to the first)
Shift Left Shifts the bytes to the left. This changes their value to be 0.5X or moves the values. (rounds and discards the first bit)
Shift Right Shifts the bytes to the Right. This changes their value to be 2X or moves the values. (rounds and discards the last bit)
XNOR
XOR