Adaptive Framework
0.9.0
|
Adaptive Function union<base64Binary>
More...
Adaptive Function union<base64Binary>
x | function execute parameter. |
Returns a list of base64Binary contains all of the unique values in two or more list of base64Binary values.
This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.
Declaration:
Parameters:
lists - (2 or more list base64Binary) Two or more lists.
Returns:
(list base64Binary)
Implemented by afw_function_execute_union()
boolean adaptive functions.
afw_function_definition_bag_boolean |
Adaptive Function at_least_one_member_of<boolean>
x | function execute parameter. |
Returns boolean true if at least one value in boolean list1 is in boolean list2.
This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.
Declaration:
Parameters:
list1 - (list boolean) The first list.
list2 - (list boolean) The second list.
Returns:
(boolean)
Implemented by afw_function_execute_at_least_one_member_of()
Function definition bag<boolean>
Definition at line 4182 of file afw_function_bindings.h.
afw_function_definition_bag_size_boolean |
Adaptive Function bag<boolean>
x | function execute parameter. |
Takes any number of boolean 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 boolean)
Returns:
(list boolean)
Implemented by afw_function_execute_bag()
Function definition bag_size<boolean>
Definition at line 4216 of file afw_function_bindings.h.
afw_function_definition_boolean |
Adaptive Function bag_size<boolean>
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 boolean)
Returns:
(integer)
Implemented by afw_function_execute_bag_size()
Function definition boolean
Definition at line 4250 of file afw_function_bindings.h.
afw_function_definition_eq_boolean |
Adaptive Function boolean
x | function execute parameter. |
Converts value to data type boolean returning 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 convert.
Returns:
(boolean) Converted value.
Errors thrown:
cast_error - value could not be converted
Implemented by afw_function_execute_convert()
Function definition eq<boolean>
Definition at line 4288 of file afw_function_bindings.h.
afw_function_definition_eqx_boolean |
Adaptive Function eq<boolean>
x | function execute parameter. |
Determine if boolean 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 - (boolean)
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<boolean>
Definition at line 4331 of file afw_function_bindings.h.
afw_function_definition_ge_boolean |
Adaptive Function eqx<boolean>
x | function execute parameter. |
Determine if for boolean 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 - (boolean)
arg2 - (any dataType)
Returns:
(boolean)
Implemented by afw_function_execute_eqx()
Function definition ge<boolean>
Definition at line 4370 of file afw_function_bindings.h.
afw_function_definition_gt_boolean |
Adaptive Function ge<boolean>
x | function execute parameter. |
Checks for boolean arg1 is greater than or equal to boolean 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 - (boolean)
arg2 - (boolean)
Returns:
(boolean)
Implemented by afw_function_execute_ge()
Function definition gt<boolean>
Definition at line 4408 of file afw_function_bindings.h.
afw_function_definition_intersection_boolean |
Adaptive Function gt<boolean>
x | function execute parameter. |
Checks for boolean arg1 is greater than boolean 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 - (boolean)
arg2 - (boolean)
Returns:
(boolean)
Implemented by afw_function_execute_gt()
Function definition intersection<boolean>
Definition at line 4446 of file afw_function_bindings.h.
afw_function_definition_is_boolean |
Adaptive Function intersection<boolean>
x | function execute parameter. |
Returns a list of boolean with the values that are common to both list of boolean list1 and list2.
This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.
Declaration:
Parameters:
list1 - (list boolean) The first list.
list2 - (list boolean) The second list.
Returns:
(list boolean)
Implemented by afw_function_execute_intersection()
Function definition is<boolean>
Definition at line 4484 of file afw_function_bindings.h.
afw_function_definition_is_in_boolean |
Adaptive Function is<boolean>
x | function execute parameter. |
Checks whether value is dataType boolean 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 is_in<boolean>
Definition at line 4518 of file afw_function_bindings.h.
afw_function_definition_le_boolean |
Adaptive Function is_in<boolean>
x | function execute parameter. |
Checks whether boolean value is in list of boolean list and returns 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 - (boolean)
list - (list boolean)
Returns:
(boolean)
Implemented by afw_function_execute_is_in()
Function definition le<boolean>
Definition at line 4556 of file afw_function_bindings.h.
afw_function_definition_lt_boolean |
Adaptive Function le<boolean>
x | function execute parameter. |
Checks for boolean arg1 is less than or equal to boolean 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 - (boolean)
arg2 - (any dataType)
Returns:
(boolean)
Implemented by afw_function_execute_le()
Function definition lt<boolean>
Definition at line 4594 of file afw_function_bindings.h.
afw_function_definition_ne_boolean |
Adaptive Function lt<boolean>
x | function execute parameter. |
Checks for boolean arg1 is less that boolean 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 - (boolean)
arg2 - (boolean)
Returns:
(boolean)
Implemented by afw_function_execute_lt()
Function definition ne<boolean>
Definition at line 4632 of file afw_function_bindings.h.
afw_function_definition_nex_boolean |
Adaptive Function ne<boolean>
x | function execute parameter. |
Determine if boolean 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 - (boolean)
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<boolean>
Definition at line 4675 of file afw_function_bindings.h.
afw_function_definition_one_and_only_boolean |
Adaptive Function nex<boolean>
x | function execute parameter. |
Determine if for boolean 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 - (boolean)
arg2 - (any dataType)
Returns:
(boolean)
Implemented by afw_function_execute_nex()
Function definition one_and_only<boolean>
Definition at line 4714 of file afw_function_bindings.h.
afw_function_definition_set_equals_boolean |
Adaptive Function one_and_only<boolean>
x | function execute parameter. |
This converts a list of boolean values that contains one value to a single boolean value.
This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.
Declaration:
Parameters:
list - (list list)
Returns:
(boolean)
Errors thrown:
arg_error - list does not contain exactly one value
Implemented by afw_function_execute_one_and_only()
Function definition set_equals<boolean>
Definition at line 4753 of file afw_function_bindings.h.
afw_function_definition_subset_boolean |
Adaptive Function set_equals<boolean>
x | function execute parameter. |
Returns boolean true if boolean list1 and boolean list2 are subsets of each other 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:
list1 - (list boolean)
list2 - (list boolean)
Returns:
(boolean)
Implemented by afw_function_execute_set_equals()
Function definition subset<boolean>
Definition at line 4791 of file afw_function_bindings.h.
afw_function_definition_to_string_boolean |
Adaptive Function subset<boolean>
x | function execute parameter. |
Returns boolean true if the unique values in boolean list1 are all in boolean list2.
This function is pure, so it will always return the same result given exactly the same parameters and has no side effects.
Declaration:
Parameters:
list1 - (list boolean) The first list.
list2 - (list boolean) The second list.
Returns:
(boolean)
Implemented by afw_function_execute_subset()
Function definition to_string<boolean>
Definition at line 4829 of file afw_function_bindings.h.
afw_function_definition_union_boolean |
Adaptive Function to_string<boolean>
x | function execute parameter. |
Converts boolean 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 - (boolean) A boolean value.
Returns:
(string) The string representation of the value.
Implemented by afw_function_execute_convert()
Function definition union<boolean>
Definition at line 4864 of file afw_function_bindings.h.