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

Adaptive Function union<integer> More...

Variables

 afw_function_definition_bag_ipAddress
 Function definition bag<ipAddress>
 
 afw_function_definition_bag_size_ipAddress
 Adaptive Function bag<ipAddress> More...
 
 afw_function_definition_eq_ipAddress
 Adaptive Function bag_size<ipAddress> More...
 
 afw_function_definition_eqx_ipAddress
 Adaptive Function eq<ipAddress> More...
 
 afw_function_definition_ge_ipAddress
 Adaptive Function eqx<ipAddress> More...
 
 afw_function_definition_gt_ipAddress
 Adaptive Function ge<ipAddress> More...
 
 afw_function_definition_ipAddress
 Adaptive Function gt<ipAddress> More...
 
 afw_function_definition_is_in_ipAddress
 Adaptive Function ipAddress More...
 
 afw_function_definition_is_ipAddress
 Adaptive Function is_in<ipAddress> More...
 
 afw_function_definition_le_ipAddress
 Adaptive Function is<ipAddress> More...
 
 afw_function_definition_lt_ipAddress
 Adaptive Function le<ipAddress> More...
 
 afw_function_definition_ne_ipAddress
 Adaptive Function lt<ipAddress> More...
 
 afw_function_definition_nex_ipAddress
 Adaptive Function ne<ipAddress> More...
 
 afw_function_definition_one_and_only_ipAddress
 Adaptive Function nex<ipAddress> More...
 
 afw_function_definition_regexp_match_ipAddress
 Adaptive Function one_and_only<ipAddress> More...
 
 afw_function_definition_to_string_ipAddress
 Adaptive Function regexp_match<ipAddress> More...
 

Detailed Description

Adaptive Function union<integer>

Parameters
xfunction execute parameter.

Returns a list of integer contains all of the unique values in two or more list of integer 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<integer>(
lists_1: (list integer),
lists_2: (list integer),
...lists_rest: (list of (list integer))
): (list integer);

Parameters:

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

Returns:

(list integer)

Implemented by afw_function_execute_union()


ipAddress adaptive functions.

Variable Documentation

◆ afw_function_definition_bag_size_ipAddress

afw_function_definition_bag_size_ipAddress

Adaptive Function bag<ipAddress>

Parameters
xfunction execute parameter.

Takes any number of ipAddress 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<ipAddress>(
...values: (list of (list ipAddress))
): (list ipAddress);

Parameters:

values - (0 or more list ipAddress)

Returns:

(list ipAddress)

Implemented by afw_function_execute_bag()


Function definition bag_size<ipAddress>

Definition at line 15117 of file afw_function_bindings.h.

◆ afw_function_definition_eq_ipAddress

afw_function_definition_eq_ipAddress

Adaptive Function bag_size<ipAddress>

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

Parameters:

value - (list ipAddress)

Returns:

(integer)

Implemented by afw_function_execute_bag_size()


Function definition eq<ipAddress>

Definition at line 15151 of file afw_function_bindings.h.

◆ afw_function_definition_eqx_ipAddress

afw_function_definition_eqx_ipAddress

Adaptive Function eq<ipAddress>

Parameters
xfunction execute parameter.

Determine if ipAddress 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<ipAddress>(
arg1: ipAddress,
arg2: any
): boolean;

Parameters:

arg1 - (ipAddress)

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<ipAddress>

Definition at line 15194 of file afw_function_bindings.h.

◆ afw_function_definition_ge_ipAddress

afw_function_definition_ge_ipAddress

Adaptive Function eqx<ipAddress>

Parameters
xfunction execute parameter.

Determine if for ipAddress 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<ipAddress>(
arg1: ipAddress,
arg2: any
): boolean;

Parameters:

arg1 - (ipAddress)

arg2 - (any dataType)

Returns:

(boolean)

Implemented by afw_function_execute_eqx()


Function definition ge<ipAddress>

Definition at line 15233 of file afw_function_bindings.h.

◆ afw_function_definition_gt_ipAddress

afw_function_definition_gt_ipAddress

Adaptive Function ge<ipAddress>

Parameters
xfunction execute parameter.

Checks for ipAddress arg1 is greater than or equal to ipAddress 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<ipAddress>(
arg1: ipAddress,
arg2: ipAddress
): boolean;

Parameters:

arg1 - (ipAddress)

arg2 - (ipAddress)

Returns:

(boolean)

Implemented by afw_function_execute_ge()


Function definition gt<ipAddress>

Definition at line 15271 of file afw_function_bindings.h.

◆ afw_function_definition_ipAddress

afw_function_definition_ipAddress

Adaptive Function gt<ipAddress>

Parameters
xfunction execute parameter.

Checks for ipAddress arg1 is greater than ipAddress 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<ipAddress>(
arg1: ipAddress,
arg2: ipAddress
): boolean;

Parameters:

arg1 - (ipAddress)

arg2 - (ipAddress)

Returns:

(boolean)

Implemented by afw_function_execute_gt()


Function definition ipAddress

Definition at line 15309 of file afw_function_bindings.h.

◆ afw_function_definition_is_in_ipAddress

afw_function_definition_is_in_ipAddress

Adaptive Function ipAddress

Parameters
xfunction execute parameter.

Converts value to data type ipAddress returning ipAddress 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 ipAddress(
value: any
): ipAddress;

Parameters:

value - (any dataType) Value to convert.

Returns:

(ipAddress) Converted value.

Errors thrown:

cast_error - value could not be converted

Implemented by afw_function_execute_convert()


Function definition is_in<ipAddress>

Definition at line 15347 of file afw_function_bindings.h.

◆ afw_function_definition_is_ipAddress

afw_function_definition_is_ipAddress

Adaptive Function is_in<ipAddress>

Parameters
xfunction execute parameter.

Checks whether ipAddress value is in list of ipAddress 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<ipAddress>(
value: ipAddress,
list: (list ipAddress)
): boolean;

Parameters:

value - (ipAddress)

list - (list ipAddress)

Returns:

(boolean)

Implemented by afw_function_execute_is_in()


Function definition is<ipAddress>

Definition at line 15385 of file afw_function_bindings.h.

◆ afw_function_definition_le_ipAddress

afw_function_definition_le_ipAddress

Adaptive Function is<ipAddress>

Parameters
xfunction execute parameter.

Checks whether value is dataType ipAddress 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<ipAddress>(
value: any
): boolean;

Parameters:

value - (any dataType) Value to check.

Returns:

(boolean)

Implemented by afw_function_execute_is()


Function definition le<ipAddress>

Definition at line 15419 of file afw_function_bindings.h.

◆ afw_function_definition_lt_ipAddress

afw_function_definition_lt_ipAddress

Adaptive Function le<ipAddress>

Parameters
xfunction execute parameter.

Checks for ipAddress arg1 is less than or equal to ipAddress 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<ipAddress>(
arg1: ipAddress,
arg2: any
): boolean;

Parameters:

arg1 - (ipAddress)

arg2 - (any dataType)

Returns:

(boolean)

Implemented by afw_function_execute_le()


Function definition lt<ipAddress>

Definition at line 15457 of file afw_function_bindings.h.

◆ afw_function_definition_ne_ipAddress

afw_function_definition_ne_ipAddress

Adaptive Function lt<ipAddress>

Parameters
xfunction execute parameter.

Checks for ipAddress arg1 is less that ipAddress 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<ipAddress>(
arg1: ipAddress,
arg2: ipAddress
): boolean;

Parameters:

arg1 - (ipAddress)

arg2 - (ipAddress)

Returns:

(boolean)

Implemented by afw_function_execute_lt()


Function definition ne<ipAddress>

Definition at line 15495 of file afw_function_bindings.h.

◆ afw_function_definition_nex_ipAddress

afw_function_definition_nex_ipAddress

Adaptive Function ne<ipAddress>

Parameters
xfunction execute parameter.

Determine if ipAddress 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<ipAddress>(
arg1: ipAddress,
arg2: any
): boolean;

Parameters:

arg1 - (ipAddress)

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<ipAddress>

Definition at line 15539 of file afw_function_bindings.h.

◆ afw_function_definition_one_and_only_ipAddress

afw_function_definition_one_and_only_ipAddress

Adaptive Function nex<ipAddress>

Parameters
xfunction execute parameter.

Determine if for ipAddress 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<ipAddress>(
arg1: ipAddress,
arg2: any
): boolean;

Parameters:

arg1 - (ipAddress)

arg2 - (any dataType)

Returns:

(boolean)

Implemented by afw_function_execute_nex()


Function definition one_and_only<ipAddress>

Definition at line 15578 of file afw_function_bindings.h.

◆ afw_function_definition_regexp_match_ipAddress

afw_function_definition_regexp_match_ipAddress

Adaptive Function one_and_only<ipAddress>

Parameters
xfunction execute parameter.

This converts a list of ipAddress values that contains one value to a single ipAddress 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<ipAddress>(
list: (list list)
): ipAddress;

Parameters:

list - (list list)

Returns:

(ipAddress)

Errors thrown:

arg_error - list does not contain exactly one value

Implemented by afw_function_execute_one_and_only()


Function definition regexp_match<ipAddress>

Definition at line 15617 of file afw_function_bindings.h.

◆ afw_function_definition_to_string_ipAddress

afw_function_definition_to_string_ipAddress

Adaptive Function regexp_match<ipAddress>

Parameters
xfunction execute parameter.

Checks whether ipAddress value matches the regular expression regexp 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 regexp_match<ipAddress>(
value: ipAddress,
regexp: string
): boolean;

Parameters:

value - (ipAddress)

regexp - (string)

Returns:

(boolean)

Implemented by afw_function_execute_regexp_match()


Function definition to_string<ipAddress>

Definition at line 15655 of file afw_function_bindings.h.