SAIL - Reverse

Modding, patches, etc., for anyone who speaks neither Polish nor Czech.
Responder
Avatar de Usuario
Morphid
Site Administrator
Site Administrator
Czech Republic
Mensajes: 86
Registrado: Sab Dic 25, 2010 12:48 am
Ubicación: Czech Republic
Contactar:

SAIL - Reverse

Mensaje por Morphid »

This function reverses all values in the list that the first one will be last etc.

Código: Seleccionar todo

list:=[1,2,3,4,5,6];
list:=Reverse(list);
// list = [6,5,4,3,2,1];

Código: Seleccionar todo

export function Reverse(list);
var i;
begin
     result:=list;
     for i:=1 to list do
       result:=Replace(result, i, list[(list+1)-i]);
end;
Avatar de Usuario
YuriStriatov
Site Administrator
Site Administrator
Cuba
Mensajes: 1395
Registrado: Vie Feb 17, 2006 3:02 am
Contactar:

Re: SAIL - TurnValuesInList

Mensaje por YuriStriatov »

Something like http://www.php.net/manual/en/function.array-reverse.php ?

Nice, but maybe better naming convention for function :P
Imagen
Avatar de Usuario
Morphid
Site Administrator
Site Administrator
Czech Republic
Mensajes: 86
Registrado: Sab Dic 25, 2010 12:48 am
Ubicación: Czech Republic
Contactar:

Re: SAIL - Reverse

Mensaje por Morphid »

thanks for your idea ;).. I corrected the name of this function
Responder