$Arr Init: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 30: Line 30:
</p>
</p>
every element of %STARRAY is set to '*** UNKNOWN ***'.
every element of %STARRAY is set to '*** UNKNOWN ***'.
<ul class="smallAndTightList">
<h2>Products authorizing {{PAGENAMEE}}</h2><ul class="smallAndTightList">
<li>[[Sirius functions]]</li>
<li>[[Sirius functions]]</li>
<li>[[Fast/Unload User Language Interface]]</li>
<li>[[Fast/Unload User Language Interface]]</li>

Revision as of 18:31, 25 October 2012

Initialize every element of array to specific value

Most Sirius $functions have been deprecated in favor of Object Oriented methods. There is no direct OO equivalent for the $Arr_Init function because the OO methods emphasize the use of Collections over the use of arrays.

$Arr_Init can be used to initialize every element of an array to a specific value. $Arr_Init accepts two arguments and returns a numeric code.

The first argument is an array of string, float, or fixed values. This array can be a single or multi-dimensional array and must not be an array in an image.

The second argument is the value with which the array is to be initialized. If this argument is not specified, it defaults to a null string if the first argument is a string array and 0 if the first argument is either a fixed or float array.

Syntax

<section begin="syntax" />%result = $Arr_Init (array, value) <section end="syntax" />

$Arr_Init Function

%result returns a 0 or, if the array is invalid, a -1.


In the following example

%FXARRAY IS FIXED ARRAY(5) %RC = $Arr_Init(%FXARRAY)

every element of %FXARRAY is set to 0.

In the following example

%STARRAY IS STRING LEN 20 ARRAY(5) %RC = $Arr_Init(%STARRAY, '*** UNKNOWN ***')

every element of %STARRAY is set to '*** UNKNOWN ***'.

Products authorizing $Arr_Init

Products authorizing $Arr_Init