Difference between revisions of "AADD()"
From Recital Documentation Wiki
Yvonnemilne (Talk | contribs) |
Yvonnemilne (Talk | contribs) |
||
Line 35: | Line 35: | ||
[[Category:Documentation]] | [[Category:Documentation]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
+ | [[Category:Array Processing]] | ||
+ | [[Category:Array Processing Functions]] |
Revision as of 15:33, 1 June 2009
Class
Array Processing
Purpose
Function to add a new element to the end of an array
Syntax
AADD(<array name>,<expr>)
See Also
AAVERAGE(), ABROWSE(), ACHOICE(), ACOL(), ACOPY(), ADEL(), ADESC(), ADIR(), AELEMENT(), AFIELDS(), AFILL(), AINS(), ALEN(), AMAX(), AMIN(), APPEND FROM ARRAY, AROW(), ASCAN(), ASIZE(), ASORT(), ASTORE(), ASTRING(), ASUBSCRIPT(), ASUM(), COPY TO ARRAY, DECLARE, DIMENSION, GATHER, LOCAL, PRIVATE, PUBLIC, RELEASE, RESTORE, SAVE, SCATTER
Description
The AADD() function adds an element to the end of array specified in <array name>. The size of the <array name> array increases by one. The value of the new element is set to <expr>.
Example
declare array1[3] array1 = "test" ? alen(array1) 3 aadd(array1,"newtest") ? array1[4] newtest
Products
Recital Database Server, Recital Mirage Server, Recital Terminal Developer