Skip to content

Functions: K

2 functions (2 overloads) on BasicRuntime.Functions starting with K.

A B C D E F G H I K L M N O P Q R S T U W X Z

KEY

1 overload

static bool Functions.KEY(DynamicArray oper, DynamicArray rootFile, DynamicArray indexKey, DynamicArray itemId)

Performs the key operation using the supplied oper, rootFile, indexKey, itemId.

Kind Method (static)
Returns bool
Use case Call Functions.KEY(...) directly (no instance required) when your code needs to perform the key operation using the supplied oper, rootFile, indexKey, itemId.
How this member is tested

Act: var result = Functions.KEY(/* a valid DynamicArray value */, /* a valid DynamicArray value */, /* a valid DynamicArray value */, /* a valid DynamicArray value */)
Assert: result matches the expected true/false outcome.

Expected: Returns true or false, indicating the outcome of the key check for the given input.

KEYIN

1 overload

static string Functions.KEYIN()

Performs the keyin operation.

Kind Method (static)
Returns string
Use case Call Functions.KEYIN(...) directly (no instance required) when your code needs to perform the keyin operation.
How this member is tested

Act: var result = Functions.KEYIN()
Assert: result is non-null and matches the expected text.

Expected: Returns a string value; verify it is non-null and matches the expected content.