Back to Aurora Vision Library Lite website

You are here: Start » All Functions » Array Composition » AvsFilter_JoinArrays

AvsFilter_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: avs

Concatenates the input arrays one after another.

Syntax

void avs::AvsFilter_JoinArrays
(
	const atl::Array<Type>& inArray1,
	const atl::Array<Type>& inArray2,
	const atl::Array<Type>& inArray3,
	const atl::Array<Type>& inArray4,
	atl::Array<Type>& outJoinedArray
)

Parameters

Name Type Default Description
Input value inArray1 const Array<Type>& First array to be joined
Input value inArray2 const Array<Type>& Second array to be joined
Input value inArray3 const Array<Type>& Third array to be joined
Input value inArray4 const Array<Type>& Fourth array to be joined
Output value 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.