Added descriptions. |
m fix link spaces |
||
| Line 11: | Line 11: | ||
|NOT|| Returns the opposite of the input | |NOT|| Returns the opposite of the input | ||
|OR|| Returns true only if at least 1 or both the inputs true. | |OR|| Returns true only if at least 1 or both the inputs true. | ||
| | |RotateLeft|| Shifts the bytes to the left. (rounds and moves the first bit to the last) | ||
| | |RotateRight|| Shifts the bytes to the right. (rounds and moves the last bit to the first) | ||
| | |ShiftLeft|| Shifts the bytes to the left. This changes their value to be 0.5X or moves the values. (rounds and discards the first bit) | ||
| | |ShiftRight|| Shifts the bytes to the Right. This changes their value to be 2X or moves the values. (rounds and discards the last bit) | ||
|XNOR|| Returns true if all the inputs are the same. | |XNOR|| Returns true if all the inputs are the same. | ||
|XOR|| Similar to an [[ProtoFlux:OR|OR]] node, except it excludes the result when both are true | |XOR|| Similar to an [[ProtoFlux:OR|OR]] node, except it excludes the result when both are true | ||
}} | }} | ||
[[Category:ProtoFlux:Operators]] | [[Category:ProtoFlux:Operators]] | ||
Latest revision as of 03:47, 25 August 2025
| 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 | Alternates between true or false based on the number of inputs. But returning the opposite result from a XOR. |
| MultiXOR | Alternates between true or false based on the number of inputs. |
| NAND | Returns false only if both the boolean inputs are true |
| NOR | Basically a a NOT OR. Returns true if both inputs are false. |
| NOT | Returns the opposite of the input |
| OR | Returns true only if at least 1 or both the inputs true. |
| RotateLeft | Shifts the bytes to the left. (rounds and moves the first bit to the last) |
| RotateRight | Shifts the bytes to the right. (rounds and moves the last bit to the first) |
| ShiftLeft | Shifts the bytes to the left. This changes their value to be 0.5X or moves the values. (rounds and discards the first bit) |
| ShiftRight | Shifts the bytes to the Right. This changes their value to be 2X or moves the values. (rounds and discards the last bit) |
| XNOR | Returns true if all the inputs are the same. |
| XOR | Similar to an OR node, except it excludes the result when both are true |
Pages in category "ProtoFlux:Operators:Boolean"
The following 17 pages are in this category, out of 17 total.