Functions: Q¶
2 functions (2 overloads) on BasicRuntime.Functions starting with Q.
QUEUE_LENGTH¶
Performs the queue_length operation using the supplied mq.
| Kind | Method (static) |
| Returns | DynamicArray |
| Use case | Call Functions.QUEUE_LENGTH(...) directly (no instance required) when your code needs to perform the queue_length operation using the supplied mq. |
How this member is tested
Act: var result = Functions.QUEUE_LENGTH(/* a valid DynamicArray value */)
Assert: result is a non-null instance whose state matches expectations.
Expected: Returns an instance of DynamicArray; verify its properties reflect the expected resulting state.
QUOTE¶
Performs the quote operation using the supplied value.
| Kind | Method (static) |
| Returns | DynamicArray |
| Use case | Call Functions.QUOTE(...) directly (no instance required) when your code needs to perform the quote operation using the supplied value. |
How this member is tested
Act: var result = Functions.QUOTE(/* a valid DynamicArray value */)
Assert: result is a non-null instance whose state matches expectations.
Expected: Returns an instance of DynamicArray; verify its properties reflect the expected resulting state.