NewStructType returns a new StructType.
(args ...ast.BaseTerm)
| 94 | |
| 95 | // NewStructType returns a new StructType. |
| 96 | func NewStructType(args ...ast.BaseTerm) ast.ApplyFn { |
| 97 | return newTypeExpr(StructType, args...) |
| 98 | } |
| 99 | |
| 100 | // NewFunType returns a new function type. |
| 101 | // Res <- Arg1, ..., ArgN |