ISARRAY()

From Lianjapedia
Revision as of 07:32, 11 April 2013 by Yvonne.milne (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

PURPOSE

Is the parameter an array

SYNONYM

None

SYNOPSIS

#include "lianja_api.h"
 
int	ISARRAY(order)
 
<input parameters>
int	order;		/* Placement in actual parameter list		*/
 
<output parameters>
none

DESCRIPTION

The function checks if the specified parameter is an array and returns 1 if true, or 0 if false. The order specifies the actual placements in the parameter list.

EXAMPLE

The following example returns .T. if the first parameter passed is an array, otherwise .F. is returned.

Example Lianja script:

declare m_values[10]
m_isarray=check_array(m_values)
return

Example 'C' function:

#include "lianja_api.h"
 
check_array()
{
    retl(ISARRAY(1));
}

SEE ALSO

_parinfa(), _parinfo(), ALENGTH(), ARRAY_ALEN(), ARRAY_DEFINE(), ARRAY_LOOKUP(), ARRAY_UPDATE(), MEMVAR_DEFINE(), MEMVAR_LOOKUP(), MEMVAR_UPDATE()