Add missing code blocks

This commit is contained in:
aaron 2024-08-27 19:41:42 -07:00 committed by GitHub
parent 6b553bf177
commit 1220dc851c
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -165,9 +165,9 @@ Depending on the particular `tag`, a `type` instance can have additional propert
| Instance Methods | Return Type | Description | | Instance Methods | Return Type | Description |
| ------------- | ------------- | ------------- | | ------------- | ------------- | ------------- |
| `setparameters(head: {type}?, tail: type?)` | () | sets the function's parameter types to the given arguments | | `setparameters(head: {type}?, tail: type?)` | `()` | sets the function's parameter types to the given arguments |
| `parameters()` | `{ head: {type}?, tail: type? }` | returns the function's parameter list as an array of ordered parameter types and optionally a variadic tail | | `parameters()` | `{ head: {type}?, tail: type? }` | returns the function's parameter list as an array of ordered parameter types and optionally a variadic tail |
| `setreturns(head: {type}?, tail: type?)` | () | sets the function's return types to the given arguments | | `setreturns(head: {type}?, tail: type?)` | `()` | sets the function's return types to the given arguments |
| `returns()` | `{ head: {type}?, tail: type? }` | returns the function's return types as an array of types and optionally a variadic tail | | `returns()` | `{ head: {type}?, tail: type? }` | returns the function's return types as an array of types and optionally a variadic tail |
#### Union `type` instance #### Union `type` instance