DayZ 1.29
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ GetKeyByValueChecked()

bool map< Class TKey, Class TValue >::GetKeyByValueChecked ( TValue value,
out TKey key )
inlineprivate

См. определение в файле EnScript.c строка 954

955 {
956 for (int i = 0; i < Count(); i++)
957 {
958 if (GetElement(i) == value)
959 {
960 key = GetKey(i);
961 return true;
962 }
963 }
964 return false;
965 }
Определения CachedEquipmentStorage.c:4
proto TValue GetElement(int index)

Перекрестные ссылки Count, GetElement() и GetKey().