| 618 | return LLVMCountStructElementTypes(Ref); |
| 619 | } |
| 620 | Type getStructElementType(unsigned int Index) const noexcept { |
| 621 | return LLVMStructGetTypeAtIndex(Ref, Index); |
| 622 | } |
| 623 | Type getPointerTo(unsigned int AddressSpace = 0) const noexcept { |
| 624 | return LLVMPointerType(Ref, AddressSpace); |
| 625 | } |