Adaptive Framework
0.9.0
|
Adaptive Function nex<function>
More...
Functions | |
const afw_value_t * | afw_function_execute_decode_to_string_hexBinary (afw_function_execute_t *x) |
Adaptive Function decode_to_string<hexBinary> More... | |
Adaptive Function nex<function>
x | function execute parameter. |
Determine if for function 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 - (function)
arg2 - (any dataType)
Returns:
(boolean)
Implemented by afw_function_execute_nex()
hexBinary adaptive functions.
const afw_value_t* afw_function_execute_decode_to_string_hexBinary | ( | afw_function_execute_t * | x | ) |
Adaptive Function decode_to_string<hexBinary>
x | function execute parameter. |
Decode hexBinary value to string. An error is thrown if decoded value is not valid UTF-8.
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 - (hexBinary) The hexBinary value to decode.
Returns:
(string) The decoded string.
Definition at line 48 of file afw_function_hexBinary.c.
afw_function_definition_bag_hexBinary |
Adaptive Function at_least_one_member_of<hexBinary>
x | function execute parameter. |
Returns boolean true if at least one value in hexBinary list1 is in hexBinary 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 hexBinary) The first list.
list2 - (list hexBinary) The second list.
Returns:
(boolean)
Implemented by afw_function_execute_at_least_one_member_of()
Function definition bag<hexBinary>
Definition at line 11500 of file afw_function_bindings.h.
afw_function_definition_bag_size_hexBinary |
Adaptive Function bag<hexBinary>
x | function execute parameter. |
Takes any number of hexBinary 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 hexBinary)
Returns:
(list hexBinary)
Implemented by afw_function_execute_bag()
Function definition bag_size<hexBinary>
Definition at line 11534 of file afw_function_bindings.h.
afw_function_definition_decode_to_string_hexBinary |
Adaptive Function bag_size<hexBinary>
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 hexBinary)
Returns:
(integer)
Implemented by afw_function_execute_bag_size()
Function definition decode_to_string<hexBinary>
Definition at line 11568 of file afw_function_bindings.h.
afw_function_definition_eqx_hexBinary |
Adaptive Function eq<hexBinary>
x | function execute parameter. |
Determine if hexBinary 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 - (hexBinary)
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<hexBinary>
Definition at line 11645 of file afw_function_bindings.h.
afw_function_definition_ge_hexBinary |
Adaptive Function eqx<hexBinary>
x | function execute parameter. |
Determine if for hexBinary 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 - (hexBinary)
arg2 - (any dataType)
Returns:
(boolean)
Implemented by afw_function_execute_eqx()
Function definition ge<hexBinary>
Definition at line 11684 of file afw_function_bindings.h.
afw_function_definition_gt_hexBinary |
Adaptive Function ge<hexBinary>
x | function execute parameter. |
Checks for hexBinary arg1 is greater than or equal to hexBinary 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 - (hexBinary)
arg2 - (hexBinary)
Returns:
(boolean)
Implemented by afw_function_execute_ge()
Function definition gt<hexBinary>
Definition at line 11722 of file afw_function_bindings.h.
afw_function_definition_hexBinary |
Adaptive Function gt<hexBinary>
x | function execute parameter. |
Checks for hexBinary arg1 is greater than hexBinary 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 - (hexBinary)
arg2 - (hexBinary)
Returns:
(boolean)
Implemented by afw_function_execute_gt()
Function definition hexBinary
Definition at line 11760 of file afw_function_bindings.h.
afw_function_definition_intersection_hexBinary |
Adaptive Function hexBinary
x | function execute parameter. |
Converts value to data type hexBinary returning hexBinary 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:
(hexBinary) Converted value.
Errors thrown:
cast_error - value could not be converted
Implemented by afw_function_execute_convert()
Function definition intersection<hexBinary>
Definition at line 11798 of file afw_function_bindings.h.
afw_function_definition_is_hexBinary |
Adaptive Function intersection<hexBinary>
x | function execute parameter. |
Returns a list of hexBinary with the values that are common to both list of hexBinary 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 hexBinary) The first list.
list2 - (list hexBinary) The second list.
Returns:
(list hexBinary)
Implemented by afw_function_execute_intersection()
Function definition is<hexBinary>
Definition at line 11836 of file afw_function_bindings.h.
afw_function_definition_is_in_hexBinary |
Adaptive Function is<hexBinary>
x | function execute parameter. |
Checks whether value is dataType hexBinary 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<hexBinary>
Definition at line 11870 of file afw_function_bindings.h.
afw_function_definition_le_hexBinary |
Adaptive Function is_in<hexBinary>
x | function execute parameter. |
Checks whether hexBinary value is in list of hexBinary 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 - (hexBinary)
list - (list hexBinary)
Returns:
(boolean)
Implemented by afw_function_execute_is_in()
Function definition le<hexBinary>
Definition at line 11908 of file afw_function_bindings.h.
afw_function_definition_lt_hexBinary |
Adaptive Function le<hexBinary>
x | function execute parameter. |
Checks for hexBinary arg1 is less than or equal to hexBinary 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 - (hexBinary)
arg2 - (any dataType)
Returns:
(boolean)
Implemented by afw_function_execute_le()
Function definition lt<hexBinary>
Definition at line 11946 of file afw_function_bindings.h.
afw_function_definition_ne_hexBinary |
Adaptive Function lt<hexBinary>
x | function execute parameter. |
Checks for hexBinary arg1 is less that hexBinary 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 - (hexBinary)
arg2 - (hexBinary)
Returns:
(boolean)
Implemented by afw_function_execute_lt()
Function definition ne<hexBinary>
Definition at line 11984 of file afw_function_bindings.h.
afw_function_definition_nex_hexBinary |
Adaptive Function ne<hexBinary>
x | function execute parameter. |
Determine if hexBinary 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 - (hexBinary)
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<hexBinary>
Definition at line 12028 of file afw_function_bindings.h.
afw_function_definition_one_and_only_hexBinary |
Adaptive Function nex<hexBinary>
x | function execute parameter. |
Determine if for hexBinary 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 - (hexBinary)
arg2 - (any dataType)
Returns:
(boolean)
Implemented by afw_function_execute_nex()
Function definition one_and_only<hexBinary>
Definition at line 12067 of file afw_function_bindings.h.
afw_function_definition_set_equals_hexBinary |
Adaptive Function one_and_only<hexBinary>
x | function execute parameter. |
This converts a list of hexBinary values that contains one value to a single hexBinary 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:
(hexBinary)
Errors thrown:
arg_error - list does not contain exactly one value
Implemented by afw_function_execute_one_and_only()
Function definition set_equals<hexBinary>
Definition at line 12106 of file afw_function_bindings.h.
afw_function_definition_subset_hexBinary |
Adaptive Function set_equals<hexBinary>
x | function execute parameter. |
Returns boolean true if hexBinary list1 and hexBinary 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 hexBinary)
list2 - (list hexBinary)
Returns:
(boolean)
Implemented by afw_function_execute_set_equals()
Function definition subset<hexBinary>
Definition at line 12144 of file afw_function_bindings.h.
afw_function_definition_to_string_hexBinary |
Adaptive Function subset<hexBinary>
x | function execute parameter. |
Returns boolean true if the unique values in hexBinary list1 are all in hexBinary 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 hexBinary) The first list.
list2 - (list hexBinary) The second list.
Returns:
(boolean)
Implemented by afw_function_execute_subset()
Function definition to_string<hexBinary>
Definition at line 12182 of file afw_function_bindings.h.
afw_function_definition_union_hexBinary |
Adaptive Function to_string<hexBinary>
x | function execute parameter. |
Converts hexBinary 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 - (hexBinary) A hexBinary value.
Returns:
(string) The string representation of the value.
Implemented by afw_function_execute_convert()
Function definition union<hexBinary>
Definition at line 12217 of file afw_function_bindings.h.