Back to FabImage Library website
You are here: Start » Function Reference » All Functions » Array Composition » FisFilter_AppendToArray
This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.
Header: | STD.h |
---|---|
Namespace: | fis |
Module: | FoundationLite |
Inserts a new element at the end of an array.
Syntax
void fis::FisFilter_AppendToArray ( ftl::Array<Type>& ioArray, const Type& inValue )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
ioArray | Array<Type>& | ||
![]() |
inValue | const Type& | Value to be appended |
Description
The operation inserts the inValue element at the end of the inArray.
Hints
- Do NOT use this filter to add multiple objects in a loop.
Examples
![]() |
![]() |
inArray = {6,7,3,4,10} inValue = 4 |
outArray = {6,7,3,4,10,4} |
See Also
- FisFilter_InsertToArray – Inserts a new element to an array at a specified location.