Chapter 3. Expressions
This chapter offers an overview of the expressions defined in Q#. An expression is an entity that the compiler can evaluate to determine its value. Expressions are constructed from literals, variables, operations, and functions using a variety of operators, modifiers, and combinators.
In this chapter, I’ll go over each type of operator, modifier, and combinator that Q# offers. Most Q# operators are very similar to those found in other languages, so I will briefly cover the syntax of the more familiar operators and spend more time on the modifiers and combinators that are less common or are unique to Q#.
I’ll start with the comparative operators and operators acting on the simpler data types, such as Bool and Int, and then follow with the expressions involving more complicated data types, data structures, and finally, operations and functions.
Note
Q# expressions that include multiple operators are evaluated following the rules of operator precedence and associativity, which define the order in which operators are applied. These rules are rather intuitive and similar to those you’d see in other programming languages, so I will not describe them explicitly in this chapter. For a formal definition of the precedence and associativity of all Q# operators and modifiers, see the Q# documentation.
Equality Operators
Equality operators check whether their operands are equal or not.
They include equality == and inequality != operators. These operators are defined ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access