Array returns a type that represents an array of the given type.
(of Type)
| 147 | |
| 148 | // Array returns a type that represents an array of the given type. |
| 149 | func Array(of Type) Type { |
| 150 | return array{of} |
| 151 | } |
| 152 | |
| 153 | type array struct { |
| 154 | of Type |
no outgoing calls
searching dependent graphs…