Back to Aurora Vision Library Lite website

You are here: Start » All Functions » Array Basics » SkipUnequalSizeArrays

SkipUnequalSizeArrays


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: avl

If the input arrays have equal size, then they are copied to the output; otherwise Nils are returned.

Syntax

void avl::SkipUnequalSizeArrays
(
	const atl::Array<Type>& inArray1,
	const atl::Array<Type>& inArray2,
	atl::Conditional<atl::Array<Type> >& outArray1,
	atl::Conditional<atl::Array<Type> >& outArray2,
	bool& outHaveEqualSize
)

Parameters

Name Type Default Description
Input value inArray1 const Array<Type>&
Input value inArray2 const Array<Type>&
Output value outArray1 Conditional<Array<Type> >&
Output value outArray2 Conditional<Array<Type> >&
Output value outHaveEqualSize bool&

See Also

  • SynchronizeArrays – Selects as many elements from each of the input arrays as possible, while assuring that the difference between corresponding values is not too big.