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

Adaptive Function union<base64Binary> More...

Variables

 afw_function_definition_at_least_one_member_of_boolean
 Function definition at_least_one_member_of<boolean>
 
 afw_function_definition_bag_boolean
 Adaptive Function at_least_one_member_of<boolean> More...
 
 afw_function_definition_bag_size_boolean
 Adaptive Function bag<boolean> More...
 
 afw_function_definition_boolean
 Adaptive Function bag_size<boolean> More...
 
 afw_function_definition_eq_boolean
 Adaptive Function boolean More...
 
 afw_function_definition_eqx_boolean
 Adaptive Function eq<boolean> More...
 
 afw_function_definition_ge_boolean
 Adaptive Function eqx<boolean> More...
 
 afw_function_definition_gt_boolean
 Adaptive Function ge<boolean> More...
 
 afw_function_definition_intersection_boolean
 Adaptive Function gt<boolean> More...
 
 afw_function_definition_is_boolean
 Adaptive Function intersection<boolean> More...
 
 afw_function_definition_is_in_boolean
 Adaptive Function is<boolean> More...
 
 afw_function_definition_le_boolean
 Adaptive Function is_in<boolean> More...
 
 afw_function_definition_lt_boolean
 Adaptive Function le<boolean> More...
 
 afw_function_definition_ne_boolean
 Adaptive Function lt<boolean> More...
 
 afw_function_definition_nex_boolean
 Adaptive Function ne<boolean> More...
 
 afw_function_definition_one_and_only_boolean
 Adaptive Function nex<boolean> More...
 
 afw_function_definition_set_equals_boolean
 Adaptive Function one_and_only<boolean> More...
 
 afw_function_definition_subset_boolean
 Adaptive Function set_equals<boolean> More...
 
 afw_function_definition_to_string_boolean
 Adaptive Function subset<boolean> More...
 
 afw_function_definition_union_boolean
 Adaptive Function to_string<boolean> More...
 

Detailed Description

Adaptive Function union<base64Binary>

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

function union<base64Binary>(
lists_1: (list base64Binary),
lists_2: (list base64Binary),
...lists_rest: (list of (list base64Binary))
): (list base64Binary);

Parameters:

lists - (2 or more list base64Binary) Two or more lists.

Returns:

(list base64Binary)

Implemented by afw_function_execute_union()


boolean adaptive functions.

Variable Documentation

◆ afw_function_definition_bag_boolean

afw_function_definition_bag_boolean

Adaptive Function at_least_one_member_of<boolean>

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

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

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

afw_function_definition_bag_size_boolean

Adaptive Function bag<boolean>

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

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

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

afw_function_definition_boolean

Adaptive Function bag_size<boolean>

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

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

afw_function_definition_eq_boolean

Adaptive Function boolean

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

function boolean(
value: any
): boolean;

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

afw_function_definition_eqx_boolean

Adaptive Function eq<boolean>

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

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

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

afw_function_definition_ge_boolean

Adaptive Function eqx<boolean>

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

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

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

afw_function_definition_gt_boolean

Adaptive Function ge<boolean>

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

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

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

afw_function_definition_intersection_boolean

Adaptive Function gt<boolean>

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

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

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

afw_function_definition_is_boolean

Adaptive Function intersection<boolean>

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

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

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

afw_function_definition_is_in_boolean

Adaptive Function is<boolean>

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

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

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

afw_function_definition_le_boolean

Adaptive Function is_in<boolean>

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

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

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

afw_function_definition_lt_boolean

Adaptive Function le<boolean>

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

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

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

afw_function_definition_ne_boolean

Adaptive Function lt<boolean>

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

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

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

afw_function_definition_nex_boolean

Adaptive Function ne<boolean>

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

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

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

afw_function_definition_one_and_only_boolean

Adaptive Function nex<boolean>

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

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

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

afw_function_definition_set_equals_boolean

Adaptive Function one_and_only<boolean>

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

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

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

afw_function_definition_subset_boolean

Adaptive Function set_equals<boolean>

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

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

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

afw_function_definition_to_string_boolean

Adaptive Function subset<boolean>

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

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

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

afw_function_definition_union_boolean

Adaptive Function to_string<boolean>

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

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

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.