MCPcopy Create free account
hub / github.com/WasmEdge/WasmEdge / getRawData

Method getRawData

include/common/types.h:170–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers 5

toLLVMConstantZeroFunction · 0.45
compileMethod · 0.45
proxyMethod · 0.45
genWasmEdge_ValTypeFunction · 0.45
convFromValFunction · 0.45

Calls 1

beginMethod · 0.45

Tested by

no test coverage detected