| 265 | } |
| 266 | |
| 267 | uint32_t AFCTable::FindGUID(const uint32_t index, const AFGUID& value) const |
| 268 | { |
| 269 | for (auto iter : data_) |
| 270 | { |
| 271 | auto pRowData = iter.second; |
| 272 | ARK_ASSERT_RET_VAL(pRowData != nullptr, 0u); |
| 273 | |
| 274 | if (pRowData->GetGUID(index) == value) |
| 275 | { |
| 276 | return iter.first; |
| 277 | } |
| 278 | } |
| 279 | |
| 280 | return 0u; |
| 281 | } |
| 282 | |
| 283 | AFIRow* AFCTable::First() |
| 284 | { |
nothing calls this directly
no outgoing calls
no test coverage detected