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

Adaptive Function nex<function> More...

Functions

const afw_value_tafw_function_execute_decode_to_string_hexBinary (afw_function_execute_t *x)
 Adaptive Function decode_to_string<hexBinary> More...
 

Variables

 afw_function_definition_at_least_one_member_of_hexBinary
 Function definition at_least_one_member_of<hexBinary>
 
 afw_function_definition_bag_hexBinary
 Adaptive Function at_least_one_member_of<hexBinary> More...
 
 afw_function_definition_bag_size_hexBinary
 Adaptive Function bag<hexBinary> More...
 
 afw_function_definition_decode_to_string_hexBinary
 Adaptive Function bag_size<hexBinary> More...
 
 afw_function_definition_eq_hexBinary
 Function definition eq<hexBinary>
 
 afw_function_definition_eqx_hexBinary
 Adaptive Function eq<hexBinary> More...
 
 afw_function_definition_ge_hexBinary
 Adaptive Function eqx<hexBinary> More...
 
 afw_function_definition_gt_hexBinary
 Adaptive Function ge<hexBinary> More...
 
 afw_function_definition_hexBinary
 Adaptive Function gt<hexBinary> More...
 
 afw_function_definition_intersection_hexBinary
 Adaptive Function hexBinary More...
 
 afw_function_definition_is_hexBinary
 Adaptive Function intersection<hexBinary> More...
 
 afw_function_definition_is_in_hexBinary
 Adaptive Function is<hexBinary> More...
 
 afw_function_definition_le_hexBinary
 Adaptive Function is_in<hexBinary> More...
 
 afw_function_definition_lt_hexBinary
 Adaptive Function le<hexBinary> More...
 
 afw_function_definition_ne_hexBinary
 Adaptive Function lt<hexBinary> More...
 
 afw_function_definition_nex_hexBinary
 Adaptive Function ne<hexBinary> More...
 
 afw_function_definition_one_and_only_hexBinary
 Adaptive Function nex<hexBinary> More...
 
 afw_function_definition_set_equals_hexBinary
 Adaptive Function one_and_only<hexBinary> More...
 
 afw_function_definition_subset_hexBinary
 Adaptive Function set_equals<hexBinary> More...
 
 afw_function_definition_to_string_hexBinary
 Adaptive Function subset<hexBinary> More...
 
 afw_function_definition_union_hexBinary
 Adaptive Function to_string<hexBinary> More...
 

Detailed Description

Adaptive Function nex<function>

Parameters
xfunction 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:

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

Parameters:

arg1 - (function)

arg2 - (any dataType)

Returns:

(boolean)

Implemented by afw_function_execute_nex()


hexBinary adaptive functions.

Function Documentation

◆ afw_function_execute_decode_to_string_hexBinary()

const afw_value_t* afw_function_execute_decode_to_string_hexBinary ( afw_function_execute_t x)

Adaptive Function decode_to_string<hexBinary>

Parameters
xfunction 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:

function decode_to_string<hexBinary>(
value: hexBinary
): string;

Parameters:

value - (hexBinary) The hexBinary value to decode.

Returns:

(string) The decoded string.

Definition at line 48 of file afw_function_hexBinary.c.

Variable Documentation

◆ afw_function_definition_bag_hexBinary

afw_function_definition_bag_hexBinary

Adaptive Function at_least_one_member_of<hexBinary>

Parameters
xfunction 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:

function at_least_one_member_of<hexBinary>(
list1: (list hexBinary),
list2: (list hexBinary)
): boolean;

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

afw_function_definition_bag_size_hexBinary

Adaptive Function bag<hexBinary>

Parameters
xfunction 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:

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

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

afw_function_definition_decode_to_string_hexBinary

Adaptive Function bag_size<hexBinary>

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<hexBinary>(
value: (list hexBinary)
): integer;

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

afw_function_definition_eqx_hexBinary

Adaptive Function eq<hexBinary>

Parameters
xfunction 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:

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

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

afw_function_definition_ge_hexBinary

Adaptive Function eqx<hexBinary>

Parameters
xfunction 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:

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

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

afw_function_definition_gt_hexBinary

Adaptive Function ge<hexBinary>

Parameters
xfunction 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:

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

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

afw_function_definition_hexBinary

Adaptive Function gt<hexBinary>

Parameters
xfunction 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:

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

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

afw_function_definition_intersection_hexBinary

Adaptive Function hexBinary

Parameters
xfunction 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:

function hexBinary(
value: any
): hexBinary;

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

afw_function_definition_is_hexBinary

Adaptive Function intersection<hexBinary>

Parameters
xfunction 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:

function intersection<hexBinary>(
list1: (list hexBinary),
list2: (list hexBinary)
): (list hexBinary);

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

afw_function_definition_is_in_hexBinary

Adaptive Function is<hexBinary>

Parameters
xfunction 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:

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

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

afw_function_definition_le_hexBinary

Adaptive Function is_in<hexBinary>

Parameters
xfunction 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:

function is_in<hexBinary>(
value: hexBinary,
list: (list hexBinary)
): boolean;

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

afw_function_definition_lt_hexBinary

Adaptive Function le<hexBinary>

Parameters
xfunction 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:

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

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

afw_function_definition_ne_hexBinary

Adaptive Function lt<hexBinary>

Parameters
xfunction 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:

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

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

afw_function_definition_nex_hexBinary

Adaptive Function ne<hexBinary>

Parameters
xfunction 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:

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

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

afw_function_definition_one_and_only_hexBinary

Adaptive Function nex<hexBinary>

Parameters
xfunction 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:

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

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

afw_function_definition_set_equals_hexBinary

Adaptive Function one_and_only<hexBinary>

Parameters
xfunction 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:

function one_and_only<hexBinary>(
list: (list list)
): hexBinary;

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

afw_function_definition_subset_hexBinary

Adaptive Function set_equals<hexBinary>

Parameters
xfunction 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:

function set_equals<hexBinary>(
list1: (list hexBinary),
list2: (list hexBinary)
): boolean;

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

afw_function_definition_to_string_hexBinary

Adaptive Function subset<hexBinary>

Parameters
xfunction 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:

function subset<hexBinary>(
list1: (list hexBinary),
list2: (list hexBinary)
): boolean;

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

afw_function_definition_union_hexBinary

Adaptive Function to_string<hexBinary>

Parameters
xfunction 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:

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

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.