Adaptive Framework
0.9.0
|
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... | |
Adaptive Function to_string<null>
x | function 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:
Parameters:
value - (null) A null value.
Returns:
(string) The string representation of the value.
Implemented by afw_function_execute_convert()
objectId adaptive functions.
afw_function_definition_bag_size_objectId |
Adaptive Function bag<objectId>
x | function 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:
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 |
Adaptive Function bag_size<objectId>
x | function 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:
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 |
Adaptive Function eq<objectId>
x | function 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:
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 |
Adaptive Function eqx<objectId>
x | function 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:
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 |
Adaptive Function ge<objectId>
x | function 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:
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 |
Adaptive Function gt<objectId>
x | function 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:
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 |
Adaptive Function is<objectId>
x | function 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:
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 |
Adaptive Function le<objectId>
x | function 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:
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 |
Adaptive Function lt<objectId>
x | function 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:
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 |
Adaptive Function ne<objectId>
x | function 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:
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 |
Adaptive Function nex<objectId>
x | function 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:
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 |
Adaptive Function objectId
x | function 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:
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.