| 221 | } |
| 222 | |
| 223 | int64_t AFNodeManager::GetInt64(const std::string& name) const |
| 224 | { |
| 225 | auto index = GetIndex(name); |
| 226 | ARK_ASSERT_RET_VAL(index > 0, NULL_INT64); |
| 227 | |
| 228 | return GetInt64(index); |
| 229 | } |
| 230 | |
| 231 | uint64_t AFNodeManager::GetUInt64(const std::string& name) const |
| 232 | { |