And
Module Info:
moduleType: "internal",
moduleName: "and"
Description
The and function compares two boolean values, outputting wether or not bot values are simultaneously true
Inputs
| Name | Type | Required |
|---|---|---|
A | boolean | ✔ |
B | boolean | ✔ |
Outputs
| Name | Type |
|---|---|
bothTrue | boolean |
Examples
| Inputs | Outputs | |
|---|---|---|
| A | B | bothTrue |
false | false | false |
true | false | false |
false | true | false |
true | true | true |