theConfig 10.0
Loading...
Searching...
No Matches
LcSettingC_Is_PY_API

LcSettingC - various functions to check a settingMore...

+ Collaboration diagram for LcSettingC_Is_PY_API:

Functions

static OT_ProcRet pylcconfig_LcSettingC_IsAggregate (LcSettingC_ARGS)
  Python: bool setting.IsAggregate() C-API
These convenience functions, some of which are implemented as macros, test if the setting setting is of an aggregate type (a group, array, or list), of a scalar type (integer, 64-bit integer, floating point, boolean, or string), and of a number (integer, 64-bit integer, or floating point), respectively …
 
static OT_ProcRet pylcconfig_LcSettingC_IsArray (LcSettingC_ARGS)
  Python: bool setting.IsArray() C-API
These convenience functions, which are implemented as macros, test if the setting setting is of a given type …
 
static OT_ProcRet pylcconfig_LcSettingC_IsGroup (LcSettingC_ARGS)
  Python: bool setting.IsGroup() C-API
These convenience functions, which are implemented as macros, test if the setting setting is of a given type …
 
static OT_ProcRet pylcconfig_LcSettingC_IsList (LcSettingC_ARGS)
  Python: bool setting.IsList() C-API
These convenience functions, which are implemented as macros, test if the setting setting is of a given type …
 
static OT_ProcRet pylcconfig_LcSettingC_IsNumber (LcSettingC_ARGS)
  Python: bool setting.IsNumber() C-API
These convenience functions, some of which are implemented as macros, test if the setting setting is of an aggregate type (a group, array, or list), of a scalar type (integer, 64-bit integer, floating point, boolean, or string), and of a number (integer, 64-bit integer, or floating point), respectively …
 
static OT_ProcRet pylcconfig_LcSettingC_IsRoot (LcSettingC_ARGS)
  Python: bool setting.IsRoot() C-API
This function returns CONFIG_TRUE if the given setting is the root setting, and CONFIG_FALSE otherwise …
 
static OT_ProcRet pylcconfig_LcSettingC_IsScalar (LcSettingC_ARGS)
  Python: bool setting.IsScalar() C-API
These convenience functions, some of which are implemented as macros, test if the setting setting is of an aggregate type (a group, array, or list), of a scalar type (integer, 64-bit integer, floating point, boolean, or string), and of a number (integer, 64-bit integer, or floating point), respectively …
 

Detailed Description

LcSettingC - various functions to check a setting

Function Documentation

◆ pylcconfig_LcSettingC_IsAggregate()

static OT_ProcRet pylcconfig_LcSettingC_IsAggregate ( LcSettingC_ARGS )
static

Python: bool setting.IsAggregate() C-API
These convenience functions, some of which are implemented as macros, test if the setting setting is of an aggregate type (a group, array, or list), of a scalar type (integer, 64-bit integer, floating point, boolean, or string), and of a number (integer, 64-bit integer, or floating point), respectively …

Definition at line 496 of file LcSettingC_py.c.

496 {
501 goto end;
502 error:
504 end:
506}
#define OT_SETUP_hdl
#define IsAggregate_doc
#define OT_retObj_SET_BOL(nat)
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
static MK_BOOL LcSettingIsAggregate(LC_CFSN setting)
These convenience functions, some of which are implemented as macros, test if the setting setting is ...

◆ pylcconfig_LcSettingC_IsArray()

static OT_ProcRet pylcconfig_LcSettingC_IsArray ( LcSettingC_ARGS )
static

Python: bool setting.IsArray() C-API
These convenience functions, which are implemented as macros, test if the setting setting is of a given type …

Definition at line 509 of file LcSettingC_py.c.

509 {
514 goto end;
515 error:
517 end:
519}
#define IsArray_doc
static MK_BOOL LcSettingIsArray(LC_CFSN setting)
These convenience functions, which are implemented as macros, test if the setting setting is of a giv...

◆ pylcconfig_LcSettingC_IsGroup()

static OT_ProcRet pylcconfig_LcSettingC_IsGroup ( LcSettingC_ARGS )
static

Python: bool setting.IsGroup() C-API
These convenience functions, which are implemented as macros, test if the setting setting is of a given type …

Definition at line 522 of file LcSettingC_py.c.

522 {
527 goto end;
528 error:
530 end:
532}
#define IsGroup_doc
static MK_BOOL LcSettingIsGroup(LC_CFSN setting)
These convenience functions, which are implemented as macros, test if the setting setting is of a giv...

◆ pylcconfig_LcSettingC_IsList()

static OT_ProcRet pylcconfig_LcSettingC_IsList ( LcSettingC_ARGS )
static

Python: bool setting.IsList() C-API
These convenience functions, which are implemented as macros, test if the setting setting is of a given type …

Definition at line 535 of file LcSettingC_py.c.

535 {
540 goto end;
541 error:
543 end:
545}
#define IsList_doc
static MK_BOOL LcSettingIsList(LC_CFSN setting)
These convenience functions, which are implemented as macros, test if the setting setting is of a giv...

◆ pylcconfig_LcSettingC_IsNumber()

static OT_ProcRet pylcconfig_LcSettingC_IsNumber ( LcSettingC_ARGS )
static

Python: bool setting.IsNumber() C-API
These convenience functions, some of which are implemented as macros, test if the setting setting is of an aggregate type (a group, array, or list), of a scalar type (integer, 64-bit integer, floating point, boolean, or string), and of a number (integer, 64-bit integer, or floating point), respectively …

Definition at line 548 of file LcSettingC_py.c.

548 {
553 goto end;
554 error:
556 end:
558}
#define IsNumber_doc
static MK_BOOL LcSettingIsNumber(LC_CFSN setting)
These convenience functions, some of which are implemented as macros, test if the setting setting is ...

◆ pylcconfig_LcSettingC_IsRoot()

static OT_ProcRet pylcconfig_LcSettingC_IsRoot ( LcSettingC_ARGS )
static

Python: bool setting.IsRoot() C-API
This function returns CONFIG_TRUE if the given setting is the root setting, and CONFIG_FALSE otherwise …

Definition at line 561 of file LcSettingC_py.c.

561 {
566 goto end;
567 error:
569 end:
571}
#define IsRoot_doc
static MK_BOOL LcSettingIsRoot(LC_CFSN setting)
This function returns CONFIG_TRUE if the given setting is the root setting, and CONFIG_FALSE otherwis...

◆ pylcconfig_LcSettingC_IsScalar()

static OT_ProcRet pylcconfig_LcSettingC_IsScalar ( LcSettingC_ARGS )
static

Python: bool setting.IsScalar() C-API
These convenience functions, some of which are implemented as macros, test if the setting setting is of an aggregate type (a group, array, or list), of a scalar type (integer, 64-bit integer, floating point, boolean, or string), and of a number (integer, 64-bit integer, or floating point), respectively …

Definition at line 574 of file LcSettingC_py.c.

574 {
579 goto end;
580 error:
582 end:
584}
#define IsScalar_doc
static MK_BOOL LcSettingIsScalar(LC_CFSN setting)
These convenience functions, some of which are implemented as macros, test if the setting setting is ...