Boolean-type attributes
Boolean attributes support specific operators and conditions.
Operator | Description | Example |
---|---|---|
= |
Is | boolean_attribute = true |
!= |
Is not | boolean_attribute != true |
Condition | Description | Example |
---|---|---|
true |
True | boolean_attribute = true |
false |
False | boolean_attribute = false |
Expression resolving to Boolean | Any expression resolving to the Boolean type | true == true |