--- [ Array types ] --------------------------------------------------------- ArrayType is an LLVM IR array type.
| 707 | |
| 708 | // ArrayType is an LLVM IR array type. |
| 709 | type ArrayType struct { |
| 710 | // Type name; or empty if not present. |
| 711 | TypeName string |
| 712 | // Array length. |
| 713 | Len uint64 |
| 714 | // Element type. |
| 715 | ElemType Type |
| 716 | } |
| 717 | |
| 718 | // NewArray returns a new array type based on the given array length and element |
| 719 | // type. |
nothing calls this directly
no outgoing calls
no test coverage detected