Back to Adaptive Vision Library website

You are here: Start » Function Reference » Logic » AvsFilter_Xor_OfArray

AvsFilter_Xor_OfArray


This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.

Returns True if (and only if) the number of True values in the input array is odd.

Syntax

void avs::AvsFilter_Xor_OfArray
(
	const atl::Array<bool>& inBoolArray,
	bool& outValue
)

Parameters

Name Type Default Description
inBoolArray const Array<bool>&
outValue bool&

Description

Array version of AvsFilter_Xor.

Hints

  • This is a primitive mathematical filter. It is recommended to use Formula Blocks instead.

See Also