get row data
| 45 | |
| 46 | // get row data |
| 47 | bool AFCRow::GetBool(const uint32_t index) const |
| 48 | { |
| 49 | ARK_ASSERT_RET_VAL(m_pNodeManager != nullptr, NULL_BOOLEAN); |
| 50 | |
| 51 | return m_pNodeManager->GetBool(index); |
| 52 | } |
| 53 | |
| 54 | int32_t AFCRow::GetInt32(const uint32_t index) const |
| 55 | { |
no outgoing calls
no test coverage detected