Adaptive Framework
0.9.0
|
Adaptive Function union<integer>
More...
Adaptive Function union<integer>
x | function 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:
Parameters:
lists - (2 or more list integer) Two or more lists.
Returns:
(list integer)
Implemented by afw_function_execute_union()
ipAddress adaptive functions.
afw_function_definition_bag_size_ipAddress |
Adaptive Function bag<ipAddress>
x | function 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:
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 |
Adaptive Function bag_size<ipAddress>
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 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 |
Adaptive Function eq<ipAddress>
x | function 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:
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 |
Adaptive Function eqx<ipAddress>
x | function 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:
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 |
Adaptive Function ge<ipAddress>
x | function 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:
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 |
Adaptive Function gt<ipAddress>
x | function 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:
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 |
Adaptive Function ipAddress
x | function 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:
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 |
Adaptive Function is_in<ipAddress>
x | function 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:
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 |
Adaptive Function is<ipAddress>
x | function 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:
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 |
Adaptive Function le<ipAddress>
x | function 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:
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 |
Adaptive Function lt<ipAddress>
x | function 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:
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 |
Adaptive Function ne<ipAddress>
x | function 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:
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 |
Adaptive Function nex<ipAddress>
x | function 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:
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 |
Adaptive Function one_and_only<ipAddress>
x | function 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:
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 |
Adaptive Function regexp_match<ipAddress>
x | function 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:
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.