NOT_AND
Download Flojoy Studio to try this app
Takes two boolean data type and computs logical NOT AND operation on them. Params: default : Boolean The input boolean to which we apply the NOT AND operation. a : Boolean The input boolean to which we apply the NOT AND operation. Returns: out : Boolean The boolean result from the operation of the inputs.
Python Code
from flojoy import flojoy, Boolean
@flojoy
def NOT_AND(default: Boolean, a: Boolean) -> Boolean:
"""Takes two boolean data type and computs logical NOT AND operation on them.
Parameters
----------
default : Boolean
The input boolean to which we apply the NOT AND operation.
a : Boolean
The input boolean to which we apply the NOT AND operation.
Returns
-------
Boolean
The boolean result from the operation of the inputs.
"""
if not default.b and not a.b:
return Boolean(b=True)
elif (default.b and not a.b) or (not default.b and a.b):
return Boolean(b=True)
else:
return Boolean(b=False)
Example App
Having problems with this example app? Join our Discord community and we will help you out!
In this example, BOOLEAN
and BOOLEAN1
nodes generate value that is true. Apply NOT_AND
operation on them.
Visualize the result using the TEXT_VIEW
node.