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

Method getRawData

include/common/types.h:486–490  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

484 ComponentTypeCode getCode() const noexcept { return Inner.Data.TCode; }
485 uint32_t getTypeIndex() const noexcept { return Inner.Data.Idx; }
486 const std::array<uint8_t, 8> getRawData() const noexcept {
487 std::array<uint8_t, 8> R;
488 std::copy_n(Inner.Raw, 8, R.begin());
489 return R;
490 }
491
492 void setCode(const ComponentTypeCode C) noexcept {
493 Inner.Data.TCode = C;

Callers

nothing calls this directly

Calls 1

beginMethod · 0.45

Tested by

no test coverage detected