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

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

Detailed Description

Adaptive Function to_string<object>

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

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

Parameters:

value - (object) A object value.

Returns:

(string) The string representation of the value.

Implemented by afw_function_execute_convert()


password adaptive functions.

Variable Documentation

◆ afw_function_definition_bag_size_password

afw_function_definition_bag_size_password

Adaptive Function bag<password>

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

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

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

afw_function_definition_eq_password

Adaptive Function bag_size<password>

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

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

afw_function_definition_eqx_password

Adaptive Function eq<password>

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

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

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

afw_function_definition_ge_password

Adaptive Function eqx<password>

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

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

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

afw_function_definition_gt_password

Adaptive Function ge<password>

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

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

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

afw_function_definition_is_password

Adaptive Function gt<password>

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

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

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

afw_function_definition_le_password

Adaptive Function is<password>

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

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

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

afw_function_definition_lt_password

Adaptive Function le<password>

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

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

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

afw_function_definition_ne_password

Adaptive Function lt<password>

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

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

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

afw_function_definition_nex_password

Adaptive Function ne<password>

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

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

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

afw_function_definition_password

Adaptive Function nex<password>

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

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

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

afw_function_definition_to_string_password

Adaptive Function password

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

function password(
value: any
): password;

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.