Operators
Assignment Operators
In a nutshell Assignment operators in QEngine scripts assign values to variables. They come in two types: the simple assignment and compound assignment operators. The simple assignment operator assigns the value of the right operand to the variable ...
Relational Operators
In a nutshell Relational operators compare two given values and return a boolean result. They are commonly used in conditional statements within QEngine scripts and include operators such as less than, greater than, less than or equal to, greater ...
Logical Operators
In a nutshell Logical operators evaluate conditions and determine the overall boolean result in QEngine scripts. QEngine supports three logical operators: AND (&&), OR (||), and NOT (!), each with defined precedence rules that affect how combined ...
Arithmetic Operators
In a nutshell Arithmetic operators perform mathematical operations on numeric values within test scripts. They include addition, subtraction, multiplication, division, and modulus, each applicable to specific data types. The addition operator can ...
Operators - Overview
An operator, in a programming language, is a symbol that represents an action. It tells the program to perform specific mathematical, relational or logical actions on given values to produce a final result. Operations are usually performed between ...