Adaptive Framework
0.9.0
|
Adaptive Function to_string<object>
More...
Variables | |
afw_function_definition_bag_password | |
Function definition bag<password> | |
afw_function_definition_bag_size_password | |
Adaptive Function bag<password> More... | |
afw_function_definition_eq_password | |
Adaptive Function bag_size<password> More... | |
afw_function_definition_eqx_password | |
Adaptive Function eq<password> More... | |
afw_function_definition_ge_password | |
Adaptive Function eqx<password> More... | |
afw_function_definition_gt_password | |
Adaptive Function ge<password> More... | |
afw_function_definition_is_password | |
Adaptive Function gt<password> More... | |
afw_function_definition_le_password | |
Adaptive Function is<password> More... | |
afw_function_definition_lt_password | |
Adaptive Function le<password> More... | |
afw_function_definition_ne_password | |
Adaptive Function lt<password> More... | |
afw_function_definition_nex_password | |
Adaptive Function ne<password> More... | |
afw_function_definition_password | |
Adaptive Function nex<password> More... | |
afw_function_definition_to_string_password | |
Adaptive Function password More... | |
Adaptive Function to_string<object>
x | function execute parameter. |
Converts object 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 - (object) A object value.
Returns:
(string) The string representation of the value.
Implemented by afw_function_execute_convert()
password adaptive functions.
afw_function_definition_bag_size_password |
Adaptive Function bag<password>
x | function execute parameter. |
Takes any number of password 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 password)
Returns:
(list password)
Implemented by afw_function_execute_bag()
Function definition bag_size<password>
Definition at line 20062 of file afw_function_bindings.h.
afw_function_definition_eq_password |
Adaptive Function bag_size<password>
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 password)
Returns:
(integer)
Implemented by afw_function_execute_bag_size()
Function definition eq<password>
Definition at line 20096 of file afw_function_bindings.h.
afw_function_definition_eqx_password |
Adaptive Function eq<password>
x | function execute parameter. |
Determine if password 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 - (password)
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<password>
Definition at line 20139 of file afw_function_bindings.h.
afw_function_definition_ge_password |
Adaptive Function eqx<password>
x | function execute parameter. |
Determine if for password 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 - (password)
arg2 - (any dataType)
Returns:
(boolean)
Implemented by afw_function_execute_eqx()
Function definition ge<password>
Definition at line 20178 of file afw_function_bindings.h.
afw_function_definition_gt_password |
Adaptive Function ge<password>
x | function execute parameter. |
Checks for password arg1 is greater than or equal to password 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 - (password)
arg2 - (password)
Returns:
(boolean)
Implemented by afw_function_execute_ge()
Function definition gt<password>
Definition at line 20216 of file afw_function_bindings.h.
afw_function_definition_is_password |
Adaptive Function gt<password>
x | function execute parameter. |
Checks for password arg1 is greater than password 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 - (password)
arg2 - (password)
Returns:
(boolean)
Implemented by afw_function_execute_gt()
Function definition is<password>
Definition at line 20254 of file afw_function_bindings.h.
afw_function_definition_le_password |
Adaptive Function is<password>
x | function execute parameter. |
Checks whether value is dataType password 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<password>
Definition at line 20288 of file afw_function_bindings.h.
afw_function_definition_lt_password |
Adaptive Function le<password>
x | function execute parameter. |
Checks for password arg1 is less than or equal to password 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 - (password)
arg2 - (any dataType)
Returns:
(boolean)
Implemented by afw_function_execute_le()
Function definition lt<password>
Definition at line 20326 of file afw_function_bindings.h.
afw_function_definition_ne_password |
Adaptive Function lt<password>
x | function execute parameter. |
Checks for password arg1 is less that password 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 - (password)
arg2 - (password)
Returns:
(boolean)
Implemented by afw_function_execute_lt()
Function definition ne<password>
Definition at line 20364 of file afw_function_bindings.h.
afw_function_definition_nex_password |
Adaptive Function ne<password>
x | function execute parameter. |
Determine if password 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 - (password)
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<password>
Definition at line 20408 of file afw_function_bindings.h.
afw_function_definition_password |
Adaptive Function nex<password>
x | function execute parameter. |
Determine if for password 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 - (password)
arg2 - (any dataType)
Returns:
(boolean)
Implemented by afw_function_execute_nex()
Function definition password
Definition at line 20447 of file afw_function_bindings.h.
afw_function_definition_to_string_password |
Adaptive Function password
x | function execute parameter. |
Converts value to data type password returning password 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:
(password) Converted value.
Errors thrown:
cast_error - value could not be converted
Implemented by afw_function_execute_convert()
Function definition to_string<password>
Definition at line 20485 of file afw_function_bindings.h.