Skip to content

Functions: Q

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

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

QUEUE_LENGTH

1 overload

static DynamicArray Functions.QUEUE_LENGTH(DynamicArray mq)

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

1 overload

static DynamicArray Functions.QUOTE(DynamicArray value)

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.