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

◆ Invert()

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

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

607 {
608 int left = 0;
609 int right = Count() - 1;
610 if (right > 0)
611 {
612 while (left < right)
613 {
614 T temp = Get(left);
615 Set(left++, Get(right));
616 Set(right--, temp);
617 }
618 }
619 }
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().