- Found in:
- cLib
Description
Documentation String
Requirements: None
Documentation Comment
accepts arrays for all three arguments, forms, levelss, countss
Note: the levels and counts arrays use the cWrapInt function. This allows the following:
A 21 index form array and levels and counts arrays of 7 forms each:
Form[0] -> levels[0] -> counts[0]
...
Form[6] -> levels[6] -> counts[6]
Form[7] -> levels[0] -> counts[0]
...
Form[13] -> levels[6] -> counts[6]
Form[14] -> levels[0] -> counts[0]
If all arrays are equal in size it will of course proceed in normal fashion
Parameters
LeveledItemaLeveledList
Form[]aArray
int[]levels
int[]counts
Examples
Auto-Generated Example
LeveledItem myLeveledItem__aLeveledList
Form[] myFormArray__aArray
int[] myIntArray__levels
int[] myIntArray__counts
int returnedValue = clib.cArrayAllAddLVLI(myLeveledItem__aLeveledList, myFormArray__aArray, myIntArray__levels, myIntArray__counts)