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

◆ Invert()

void array< Class T >::Invert ( )
inlineprivate

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

583 {
584 int left = 0;
585 int right = Count() - 1;
586 if (right > 0)
587 {
588 while (left < right)
589 {
590 T temp = Get(left);
591 Set(left++, Get(right));
592 Set(right--, temp);
593 }
594 }
595 }
override float Get()
Определения PlayerStatBase.c:134
Result for an object found in CGame.IsBoxCollidingGeometryProxy.
proto void Set(int n, T value)
proto native int Count()

Перекрестные ссылки Count, Get() и Set().