Back to FabImage Library website

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

ConditionalToPythonObject


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

Converts a conditional value to a python dynamic object changing Nil to Pythons None.

Syntax

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

Parameters

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

Description

This is a helper filter allowing to pass a conditional data into the Python_CallFunction filter input arguments.

Nil value on the inObject input will be converted to the Pythons None object in the resulting PythonObject data. See Conditional Data in Python_CallFunction.

See Also