NewRelType returns a new relation type.
(args ...ast.BaseTerm)
| 105 | |
| 106 | // NewRelType returns a new relation type. |
| 107 | func NewRelType(args ...ast.BaseTerm) ast.ApplyFn { |
| 108 | return newTypeExpr(RelType, args...) |
| 109 | } |
| 110 | |
| 111 | // NewUnionType returns a new UnionType. |
| 112 | func NewUnionType(elems ...ast.BaseTerm) ast.ApplyFn { |