Back to Adaptive Vision Library website

You are here: Start » Function Reference » Array Basics » AvsFilter_TestArrayEmpty

AvsFilter_TestArrayEmpty


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

Tests whether the size of an array equals zero.

Syntax

void avs::AvsFilter_TestArrayEmpty
(
	const atl::Array<Type>& inArray,
	bool& outIsEmpty
)

Parameters

Name Type Default Description
inArray const Array<Type>& Input array
outIsEmpty bool&

Examples

inArray = {1,5}
outIsEmpty = False
inArray = {}
outIsEmpty = True