Aurora Visio Studio TOP » Filter Reference » Array » Array Composition » AppendToArray

AppendToArray


モジュール: FoundationLite

配列の末尾に新しい要素を挿入します。

名前 説明
Input will be modified
ioArray <T>Array
Input value
inValue <T> Value to be appended

このフィルターの型は、任意の有効な型を表す型変数 T を使用して定義されています。 詳しくはこちら.

説明

The operation inserts the inValue element at the end of the inArray.

ヒント

  • Do NOT use this filter to add multiple objects in a loop. Use AccumulateElements instead.

使用例

inArray = {6,7,3,4,10}
inValue = 4
outArray = {6,7,3,4,10,4}

複雑さのレベル

このフィルターは、Advacedの複雑さレベルで使用できます。

関連項目

  • InsertToArray – Inserts a new element to an array at a specified location.