2015-09-20 17:12:43 +02:00
|
|
|
{
|
|
|
|
"name": "AND",
|
|
|
|
"type": "operator",
|
2021-05-12 09:50:23 +02:00
|
|
|
"groups": ["Operators"],
|
2022-04-07 17:39:59 +02:00
|
|
|
"description": "Returns TRUE when conditions a and b are true.",
|
2022-01-07 08:33:29 -05:00
|
|
|
"arguments": [{
|
|
|
|
"arg": "a",
|
|
|
|
"description": "condition"
|
|
|
|
}, {
|
|
|
|
"arg": "b",
|
|
|
|
"description": "condition"
|
|
|
|
}],
|
|
|
|
"examples": [{
|
|
|
|
"expression": "TRUE AND TRUE",
|
2022-03-18 10:20:28 +01:00
|
|
|
"returns": "TRUE"
|
2022-01-07 08:33:29 -05:00
|
|
|
}, {
|
|
|
|
"expression": "TRUE AND FALSE",
|
2022-03-18 10:20:28 +01:00
|
|
|
"returns": "FALSE"
|
2022-01-07 08:33:29 -05:00
|
|
|
}, {
|
|
|
|
"expression": "4 = 2+2 AND 1 = 1",
|
2022-03-18 10:20:28 +01:00
|
|
|
"returns": "TRUE"
|
2022-01-07 08:33:29 -05:00
|
|
|
}, {
|
|
|
|
"expression": "4 = 2+2 AND 1 = 2",
|
2022-03-18 10:20:28 +01:00
|
|
|
"returns": "FALSE"
|
2022-01-07 08:33:29 -05:00
|
|
|
}],
|
|
|
|
"tags": ["condition"]
|
2015-09-20 17:12:43 +02:00
|
|
|
}
|