Back to FabImage Library website
You are here: Start » Function Reference » All Functions » Common » 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: | fil |
Module: | FoundationLite |
Produces 'True' if the input object is present or 'False' otherwise.
Syntax
void fil::TestObjectNotNil ( const typename ftl::ToConditionalType<const Type&>::Type& inObject, bool& outIsNotNil )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inObject | const typename ToConditionalType<const Type&>::Type& | Conditional object being inspected | |
![]() |
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.