Goto: 4C Home | 4C Docs | 4C External Libraries Home | FCJSon Home | FCJSon Function List ArrayPutArray()

ArrayPutArray()

Purpose:
FCJSon::ArrayPutArray() puts an array object at a specified index in another array object.
Usage:
rc = FCJSon::ArrayPutArray(<arrayident0>,<arrayidx>,<arrayident1>);
Arguments:

integer <arrayident0> - The array being modified

integer <arrayidx> - The exact index to put the array object at

integer <arrayident1> - The array object to put
Returns:
integer <rc>
0 - OK
-1 - Error
Where Used:
FCJSon::ArrayPutArray() can be called anytime you have two different arrayidents.
Example:
Example
Description:
FCJSon::ArrayPutArray() puts an array object at a specified index in another array object. If there is already an object at <arrayidx>, it is replaced by the array object. If necessary, the array being modified is extended with nulls.
Bugs/Features/Comments:
See Also:
FCJSon Function List


Back to Top