NewBoundDecl returns a new BoundDecl.
(bounds ...BaseTerm)
| 398 | |
| 399 | // NewBoundDecl returns a new BoundDecl. |
| 400 | func NewBoundDecl(bounds ...BaseTerm) BoundDecl { |
| 401 | return BoundDecl{bounds} |
| 402 | } |
| 403 | |
| 404 | // InclusionConstraint expresses e.g. that if foo(X, Y) holds, |
| 405 | // then also bar(X) and baz(Y) and xyz(X,Y) hold. This can be a |
no outgoing calls