Difference between revisions of "ALEN()"

From Recital Documentation Wiki
Jump to: navigation, search
(No difference)

Revision as of 11:05, 24 March 2009

Class

Array Processing


Purpose

Function to return the number of elements, rows or columns in an array


Syntax

ALEN(<array> [,<expN>])


See Also

AADD(), AAVERAGE(), ABROWSE(), ACHOICE(), ACOL(), ACOPY(), ADEL(), ADESC(), ADIR(), AELEMENT(), AFIELDS(), AFILL(), AINS(), 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 ALEN() function returns the number of elements in the previously declared <array>. If the optional <expN> is specified, ALEN() can also return the number of rows or the number of columns in the array.


<expN> Returns
0 Number of elements
1 Number of rows
2 Number of columns


If no <expN> is specified, the number of array elements is returned.


Example

declare aNames[10,12]
? alen(aNames)
       120
? alen(aNames,0)
       120
? alen(aNames,1)
        10
? alen(aNames,2)
        12


Products

Recital Database Server, Recital Mirage Server, Recital Terminal Developer