Functions: K¶
2 functions (2 overloads) on BasicRuntime.Functions starting with K.
KEY¶
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¶
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.