(a, b *Constraint)
| 60 | } |
| 61 | |
| 62 | func orConst(a, b *Constraint) *Constraint { |
| 63 | return &Constraint{ |
| 64 | Logical: &LogicalConstraint{ |
| 65 | Op: "or", |
| 66 | A: a, |
| 67 | B: b, |
| 68 | }, |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | func notConst(a *Constraint) *Constraint { |
| 73 | return &Constraint{ |
no outgoing calls
no test coverage detected