Adaptive Framework
0.9.0
|
Adaptive Function to_string<objectId>
More...
Adaptive Function to_string<objectId>
x | function execute parameter. |
Converts objectId 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 - (objectId) A objectId value.
Returns:
(string) The string representation of the value.
Implemented by afw_function_execute_convert()
objectPath adaptive functions.
afw_function_definition_bag_size_objectPath |
Adaptive Function bag<objectPath>
x | function execute parameter. |
Takes any number of objectPath 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 objectPath)
Returns:
(list objectPath)
Implemented by afw_function_execute_bag()
Function definition bag_size<objectPath>
Definition at line 18793 of file afw_function_bindings.h.
afw_function_definition_eq_objectPath |
Adaptive Function bag_size<objectPath>
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 objectPath)
Returns:
(integer)
Implemented by afw_function_execute_bag_size()
Function definition eq<objectPath>
Definition at line 18827 of file afw_function_bindings.h.
afw_function_definition_eqx_objectPath |
Adaptive Function eq<objectPath>
x | function execute parameter. |
Determine if objectPath 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 - (objectPath)
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<objectPath>
Definition at line 18870 of file afw_function_bindings.h.
afw_function_definition_ge_objectPath |
Adaptive Function eqx<objectPath>
x | function execute parameter. |
Determine if for objectPath 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 - (objectPath)
arg2 - (any dataType)
Returns:
(boolean)
Implemented by afw_function_execute_eqx()
Function definition ge<objectPath>
Definition at line 18909 of file afw_function_bindings.h.
afw_function_definition_gt_objectPath |
Adaptive Function ge<objectPath>
x | function execute parameter. |
Checks for objectPath arg1 is greater than or equal to objectPath 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 - (objectPath)
arg2 - (objectPath)
Returns:
(boolean)
Implemented by afw_function_execute_ge()
Function definition gt<objectPath>
Definition at line 18947 of file afw_function_bindings.h.
afw_function_definition_is_objectPath |
Adaptive Function gt<objectPath>
x | function execute parameter. |
Checks for objectPath arg1 is greater than objectPath 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 - (objectPath)
arg2 - (objectPath)
Returns:
(boolean)
Implemented by afw_function_execute_gt()
Function definition is<objectPath>
Definition at line 18985 of file afw_function_bindings.h.
afw_function_definition_le_objectPath |
Adaptive Function is<objectPath>
x | function execute parameter. |
Checks whether value is dataType objectPath 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<objectPath>
Definition at line 19019 of file afw_function_bindings.h.
afw_function_definition_lt_objectPath |
Adaptive Function le<objectPath>
x | function execute parameter. |
Checks for objectPath arg1 is less than or equal to objectPath 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 - (objectPath)
arg2 - (any dataType)
Returns:
(boolean)
Implemented by afw_function_execute_le()
Function definition lt<objectPath>
Definition at line 19057 of file afw_function_bindings.h.
afw_function_definition_ne_objectPath |
Adaptive Function lt<objectPath>
x | function execute parameter. |
Checks for objectPath arg1 is less that objectPath 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 - (objectPath)
arg2 - (objectPath)
Returns:
(boolean)
Implemented by afw_function_execute_lt()
Function definition ne<objectPath>
Definition at line 19095 of file afw_function_bindings.h.
afw_function_definition_nex_objectPath |
Adaptive Function ne<objectPath>
x | function execute parameter. |
Determine if objectPath 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 - (objectPath)
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<objectPath>
Definition at line 19139 of file afw_function_bindings.h.
afw_function_definition_objectPath |
Adaptive Function nex<objectPath>
x | function execute parameter. |
Determine if for objectPath 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 - (objectPath)
arg2 - (any dataType)
Returns:
(boolean)
Implemented by afw_function_execute_nex()
Function definition objectPath
Definition at line 19178 of file afw_function_bindings.h.
afw_function_definition_to_string_objectPath |
Adaptive Function objectPath
x | function execute parameter. |
Converts value to data type objectPath returning objectPath 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:
(objectPath) Converted value.
Errors thrown:
cast_error - value could not be converted
Implemented by afw_function_execute_convert()
Function definition to_string<objectPath>
Definition at line 19216 of file afw_function_bindings.h.