Re: [fpc-pascal] unit system;  procedure move();

2008-03-17 Thread Pete Cervasio
On Monday 17 March 2008 06:40:51 Jonas Maebe wrote: > On 17 Mar 2008, at 12:34, [EMAIL PROTECTED] wrote: > > Is the use of the move procedure right? The array length is > > Maximum-1. When I > > put this length on value[1], the last entry value[Maximum-1] would > > be deleted > > or would be shifte

Re: [fpc-pascal] unit system;  procedure move ();

2008-03-17 Thread Jonas Maebe
On 17 Mar 2008, at 12:34, [EMAIL PROTECTED] wrote: I need more informations about the move() procedure form unit system. I want to shift an array (values:array[0..Maximum-1] of single) like the following lines: for i:=Maximum-1 downto 1 do values[i]:=values[i-1]; values[0]:=sameothervalue;

[fpc-pascal] unit system;  procedure move();

2008-03-17 Thread fpc
Hi I need more informations about the move() procedure  form unit system. I want to shift an array (values:array[0..Maximum-1] of single) like the following lines: for i:=Maximum-1 downto 1 do values[i]:=values[i-1]; values[0]:=sameothervalue; I found the move procedure (unit system) and wrote