(source RegoSource, terms ...BooleanNode)
| 25 | func (binaryOp) IsBooleanNode() {} |
| 26 | |
| 27 | func Or(source RegoSource, terms ...BooleanNode) BooleanNode { |
| 28 | return newBinaryOp(source, binaryOpOR, terms...) |
| 29 | } |
| 30 | |
| 31 | func And(source RegoSource, terms ...BooleanNode) BooleanNode { |
| 32 | return newBinaryOp(source, binaryOpAND, terms...) |
no test coverage detected