Back to Aurora Vision Library website

You are here: Start » Function Reference » All Functions » Common » TestObjectNotNil

TestObjectNotNil


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
Module: FoundationLite

Produces 'True' if the input object is present or 'False' otherwise.

Syntax

void avl::TestObjectNotNil
(
	const typename atl::ToConditionalType<const Type&>::Type& inObject,
	bool& outIsNotNil
)

Parameters

Name Type Default Description
Input value inObject const typename ToConditionalType<const Type&>::Type& Conditional object being inspected
Output value outIsNotNil bool& 'True' if the object exists, 'False' otherwise

Remarks

  • It is usually better to use ".IsNil.Not" property output that can be created on any conditional filter output.

See Also

  • TestObjectNil – Produces 'True' if the input object is NOT present or 'False' otherwise.