Back to FabImage Library website
You are here: Start » Function Reference » All Functions » Array Composition » FisFilter_JoinArrays
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 |
Concatenates the input arrays one after another.
Syntax
void fis::FisFilter_JoinArrays ( const ftl::Array<Type>& inArray1, const ftl::Array<Type>& inArray2, const ftl::Array<Type>& inArray3, const ftl::Array<Type>& inArray4, ftl::Array<Type>& outJoinedArray )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inArray1 | const Array<Type>& | First array to be joined | |
![]() |
inArray2 | const Array<Type>& | Second array to be joined | |
![]() |
inArray3 | const Array<Type>& | Third array to be joined | |
![]() |
inArray4 | const Array<Type>& | Fourth array to be joined | |
![]() |
outJoinedArray | Array<Type>& | Joined array |
Hints
- If you need more than four input arrays, use a sequence of several instances of this filter.
Examples
![]() |
![]() |
inArray1 = {2,0,2} inArray2 = {4,5} |
outArray = {2,0,2,4,5} |
See Also
- FlattenArray – Receives an array of arrays, and creates a single one-dimensional array containing all individual elements.
- FisFilter_AppendToArray – Inserts a new element at the end of an array.
- FisFilter_CreateArray – Creates an array from up to 8 individual objects.
- FisFilter_InsertToArray – Inserts a new element to an array at a specified location.