theConfig 10.0
Loading...
Searching...
No Matches
LcSettingC_Is_RB_API

LcSettingC - various functions to check a settingMore...

+ Collaboration diagram for LcSettingC_Is_RB_API:

Functions

static OT_ProcRet rblcconfig_LcSettingC_IsAggregate (LcSettingC_ARGS)
  Ruby: 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 rblcconfig_LcSettingC_IsArray (LcSettingC_ARGS)
  Ruby: 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 rblcconfig_LcSettingC_IsGroup (LcSettingC_ARGS)
  Ruby: 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 rblcconfig_LcSettingC_IsList (LcSettingC_ARGS)
  Ruby: 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 rblcconfig_LcSettingC_IsNumber (LcSettingC_ARGS)
  Ruby: 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 rblcconfig_LcSettingC_IsRoot (LcSettingC_ARGS)
  Ruby: 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 rblcconfig_LcSettingC_IsScalar (LcSettingC_ARGS)
  Ruby: 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

◆ rblcconfig_LcSettingC_IsAggregate()

static OT_ProcRet rblcconfig_LcSettingC_IsAggregate ( LcSettingC_ARGS )
static

Ruby: 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 446 of file LcSettingC_rb.c.

446 {
451 end: MK_UNUSED /* LONG JUMP on error */
453}
#define OT_SETUP_hdl
#define IsAggregate_doc
#define OT_retObj_SET_BOL(nat)
#define OT_SETUP_NOARG(d)
#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 ...
#define MK_UNUSED

◆ rblcconfig_LcSettingC_IsArray()

static OT_ProcRet rblcconfig_LcSettingC_IsArray ( LcSettingC_ARGS )
static

Ruby: 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 456 of file LcSettingC_rb.c.

456 {
461 end: MK_UNUSED /* LONG JUMP on error */
463}
#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...

◆ rblcconfig_LcSettingC_IsGroup()

static OT_ProcRet rblcconfig_LcSettingC_IsGroup ( LcSettingC_ARGS )
static

Ruby: 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 466 of file LcSettingC_rb.c.

466 {
471 end: MK_UNUSED /* LONG JUMP on error */
473}
#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...

◆ rblcconfig_LcSettingC_IsList()

static OT_ProcRet rblcconfig_LcSettingC_IsList ( LcSettingC_ARGS )
static

Ruby: 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 476 of file LcSettingC_rb.c.

476 {
481 end: MK_UNUSED /* LONG JUMP on error */
483}
#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...

◆ rblcconfig_LcSettingC_IsNumber()

static OT_ProcRet rblcconfig_LcSettingC_IsNumber ( LcSettingC_ARGS )
static

Ruby: 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 486 of file LcSettingC_rb.c.

486 {
491 end: MK_UNUSED /* LONG JUMP on error */
493}
#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 ...

◆ rblcconfig_LcSettingC_IsRoot()

static OT_ProcRet rblcconfig_LcSettingC_IsRoot ( LcSettingC_ARGS )
static

Ruby: 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 496 of file LcSettingC_rb.c.

496 {
501 end: MK_UNUSED /* LONG JUMP on error */
503}
#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...

◆ rblcconfig_LcSettingC_IsScalar()

static OT_ProcRet rblcconfig_LcSettingC_IsScalar ( LcSettingC_ARGS )
static

Ruby: 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 506 of file LcSettingC_rb.c.

506 {
511 end: MK_UNUSED /* LONG JUMP on error */
513}
#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 ...