Back to FabImage Library website

You are here: Start » Function Reference » All Functions » Python » PythonObjectToConditional

PythonObjectToConditional


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

Unpacks a None value of a dynamic PythonObject to conditional value.

Syntax

void fil::PythonObjectToConditional
(
	const fil::PythonObject& inObject,
	ftl::Conditional<fil::PythonObject>& outObject
)

Parameters

Name Type Default Description
Input value inObject const PythonObject&
Output value outObject Conditional<PythonObject>&

Description

This is a helper filter allowing to retrieve a conditional data from the Python_CallFunction filter result outputs.

None object on the inObject input will be converted to Nil on the conditional outObject output. See Conditional Data in Python_CallFunction.

See Also