MCPcopy Create free account
hub / github.com/OpenArkStudio/ARK / GetColType

Method GetColType

src/plugin/kernel/src/AFTableMeta.cpp:61–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59}
60
61ArkDataType AFTableMeta::GetColType(const uint32_t index) const
62{
63 ARK_ASSERT_RET_VAL(class_meta_ != nullptr, ArkDataType::DT_EMPTY);
64
65 auto pMeta = class_meta_->FindDataMeta(index);
66 ARK_ASSERT_RET_VAL(pMeta != nullptr, ArkDataType::DT_EMPTY);
67
68 return pMeta->GetType();
69}
70
71const ArkMaskType AFTableMeta::GetMask() const
72{

Callers

nothing calls this directly

Calls 2

FindDataMetaMethod · 0.80
GetTypeMethod · 0.45

Tested by

no test coverage detected