| 168 | TypeCode getHeapTypeCode() const noexcept { return Inner.Data.HTCode; } |
| 169 | uint32_t getTypeIndex() const noexcept { return Inner.Data.Idx; } |
| 170 | const std::array<uint8_t, 8> getRawData() const noexcept { |
| 171 | std::array<uint8_t, 8> R; |
| 172 | std::copy_n(Inner.Raw, 8, R.begin()); |
| 173 | return R; |
| 174 | } |
| 175 | |
| 176 | bool isDefaultable() const noexcept { |
| 177 | return Inner.Data.Code != TypeCode::Ref; |
no test coverage detected