Adaptive Framework  0.9.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
Variables

Adaptive Function to_string<null> More...

Variables

 afw_function_definition_bag_objectId
 Function definition bag<objectId>
 
 afw_function_definition_bag_size_objectId
 Adaptive Function bag<objectId> More...
 
 afw_function_definition_eq_objectId
 Adaptive Function bag_size<objectId> More...
 
 afw_function_definition_eqx_objectId
 Adaptive Function eq<objectId> More...
 
 afw_function_definition_ge_objectId
 Adaptive Function eqx<objectId> More...
 
 afw_function_definition_gt_objectId
 Adaptive Function ge<objectId> More...
 
 afw_function_definition_is_objectId
 Adaptive Function gt<objectId> More...
 
 afw_function_definition_le_objectId
 Adaptive Function is<objectId> More...
 
 afw_function_definition_lt_objectId
 Adaptive Function le<objectId> More...
 
 afw_function_definition_ne_objectId
 Adaptive Function lt<objectId> More...
 
 afw_function_definition_nex_objectId
 Adaptive Function ne<objectId> More...
 
 afw_function_definition_objectId
 Adaptive Function nex<objectId> More...
 
 afw_function_definition_to_string_objectId
 Adaptive Function objectId More...
 

Detailed Description

Adaptive Function to_string<null>

Parameters
xfunction execute parameter.

Converts null value to string. For list values, the to_string() value for each entry is returned separated with commas.

This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.

Declaration:

function to_string<null>(
value: null
): string;

Parameters:

value - (null) A null value.

Returns:

(string) The string representation of the value.

Implemented by afw_function_execute_convert()


objectId adaptive functions.

Variable Documentation

◆ afw_function_definition_bag_size_objectId

afw_function_definition_bag_size_objectId

Adaptive Function bag<objectId>

Parameters
xfunction execute parameter.

Takes any number of objectId values and returns a list of list.

This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.

Declaration:

function bag<objectId>(
...values: (list of (list objectId))
): (list objectId);

Parameters:

values - (0 or more list objectId)

Returns:

(list objectId)

Implemented by afw_function_execute_bag()


Function definition bag_size<objectId>

Definition at line 18291 of file afw_function_bindings.h.

◆ afw_function_definition_eq_objectId

afw_function_definition_eq_objectId

Adaptive Function bag_size<objectId>

Parameters
xfunction execute parameter.

This returns the integer number of values in list.

This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.

Declaration:

function bag_size<objectId>(
value: (list objectId)
): integer;

Parameters:

value - (list objectId)

Returns:

(integer)

Implemented by afw_function_execute_bag_size()


Function definition eq<objectId>

Definition at line 18325 of file afw_function_bindings.h.

◆ afw_function_definition_eqx_objectId

afw_function_definition_eqx_objectId

Adaptive Function eq<objectId>

Parameters
xfunction execute parameter.

Determine if objectId arg1 is equal to the value of arg2 converted to the data type of arg1 then return the boolean result. Use "eqx" ("===") instead if you want false to be returned if arg1 and arg2's data type don't match.

This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.

Declaration:

function eq<objectId>(
arg1: objectId,
arg2: any
): boolean;

Parameters:

arg1 - (objectId)

arg2 - (any dataType)

Returns:

(boolean)

Errors thrown:

conversion - arg2 cannot be converted to the data type of arg1.

Implemented by afw_function_execute_eq()


Function definition eqx<objectId>

Definition at line 18368 of file afw_function_bindings.h.

◆ afw_function_definition_ge_objectId

afw_function_definition_ge_objectId

Adaptive Function eqx<objectId>

Parameters
xfunction execute parameter.

Determine if for objectId arg1 is equal to the value and data type of arg2 then return the boolean result. Use "eq" ("==") instead if you want arg2 to be converted to the data type of arg1 before comparison.

This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.

Declaration:

function eqx<objectId>(
arg1: objectId,
arg2: any
): boolean;

Parameters:

arg1 - (objectId)

arg2 - (any dataType)

Returns:

(boolean)

Implemented by afw_function_execute_eqx()


Function definition ge<objectId>

Definition at line 18407 of file afw_function_bindings.h.

◆ afw_function_definition_gt_objectId

afw_function_definition_gt_objectId

Adaptive Function ge<objectId>

Parameters
xfunction execute parameter.

Checks for objectId arg1 is greater than or equal to objectId arg2 and return the boolean result.

This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.

Declaration:

function ge<objectId>(
arg1: objectId,
arg2: objectId
): boolean;

Parameters:

arg1 - (objectId)

arg2 - (objectId)

Returns:

(boolean)

Implemented by afw_function_execute_ge()


Function definition gt<objectId>

Definition at line 18445 of file afw_function_bindings.h.

◆ afw_function_definition_is_objectId

afw_function_definition_is_objectId

Adaptive Function gt<objectId>

Parameters
xfunction execute parameter.

Checks for objectId arg1 is greater than objectId arg2 and return the boolean result.

This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.

Declaration:

function gt<objectId>(
arg1: objectId,
arg2: objectId
): boolean;

Parameters:

arg1 - (objectId)

arg2 - (objectId)

Returns:

(boolean)

Implemented by afw_function_execute_gt()


Function definition is<objectId>

Definition at line 18483 of file afw_function_bindings.h.

◆ afw_function_definition_le_objectId

afw_function_definition_le_objectId

Adaptive Function is<objectId>

Parameters
xfunction execute parameter.

Checks whether value is dataType objectId and return the boolean result.

This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.

Declaration:

function is<objectId>(
value: any
): boolean;

Parameters:

value - (any dataType) Value to check.

Returns:

(boolean)

Implemented by afw_function_execute_is()


Function definition le<objectId>

Definition at line 18517 of file afw_function_bindings.h.

◆ afw_function_definition_lt_objectId

afw_function_definition_lt_objectId

Adaptive Function le<objectId>

Parameters
xfunction execute parameter.

Checks for objectId arg1 is less than or equal to objectId arg2 and return the boolean result.

This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.

Declaration:

function le<objectId>(
arg1: objectId,
arg2: any
): boolean;

Parameters:

arg1 - (objectId)

arg2 - (any dataType)

Returns:

(boolean)

Implemented by afw_function_execute_le()


Function definition lt<objectId>

Definition at line 18555 of file afw_function_bindings.h.

◆ afw_function_definition_ne_objectId

afw_function_definition_ne_objectId

Adaptive Function lt<objectId>

Parameters
xfunction execute parameter.

Checks for objectId arg1 is less that objectId arg2 and return the boolean result.

This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.

Declaration:

function lt<objectId>(
arg1: objectId,
arg2: objectId
): boolean;

Parameters:

arg1 - (objectId)

arg2 - (objectId)

Returns:

(boolean)

Implemented by afw_function_execute_lt()


Function definition ne<objectId>

Definition at line 18593 of file afw_function_bindings.h.

◆ afw_function_definition_nex_objectId

afw_function_definition_nex_objectId

Adaptive Function ne<objectId>

Parameters
xfunction execute parameter.

Determine if objectId arg1 is not equal to the value of arg2 converted to the data type of arg1 then return the boolean result. Use "nex" ("!==") instead if you want true to be returned if arg1 and arg2's data type don't match.

This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.

Declaration:

function ne<objectId>(
arg1: objectId,
arg2: any
): boolean;

Parameters:

arg1 - (objectId)

arg2 - (any dataType)

Returns:

(boolean)

Errors thrown:

conversion - arg2 cannot be converted to the data type of arg1.

Implemented by afw_function_execute_ne()


Function definition nex<objectId>

Definition at line 18637 of file afw_function_bindings.h.

◆ afw_function_definition_objectId

afw_function_definition_objectId

Adaptive Function nex<objectId>

Parameters
xfunction execute parameter.

Determine if for objectId arg1 is not equal to the value or data type of arg2 then return the boolean result. Use "ne" ("!=") instead if you want arg2 to be converted to the data type of arg1 before comparison.

This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.

Declaration:

function nex<objectId>(
arg1: objectId,
arg2: any
): boolean;

Parameters:

arg1 - (objectId)

arg2 - (any dataType)

Returns:

(boolean)

Implemented by afw_function_execute_nex()


Function definition objectId

Definition at line 18676 of file afw_function_bindings.h.

◆ afw_function_definition_to_string_objectId

afw_function_definition_to_string_objectId

Adaptive Function objectId

Parameters
xfunction execute parameter.

Converts value to data type objectId returning objectId result.

This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.

Declaration:

function objectId(
value: any
): objectId;

Parameters:

value - (any dataType) Value to convert.

Returns:

(objectId) Converted value.

Errors thrown:

cast_error - value could not be converted

Implemented by afw_function_execute_convert()


Function definition to_string<objectId>

Definition at line 18714 of file afw_function_bindings.h.