AutoIt+
  • Overview
  • Getting started
  • The language
    • Basic
    • Grammar
      • Expressions
      • Statements
      • Declarations
    • Operators
    • Variables
    • Types & values
      • Null
      • Booleans
      • Numbers
      • Strings
      • Functions
      • Classes
      • Pointers
    • Control flow
      • If statement
      • For loop
      • While loop
      • Break & continue
      • Error handling
    • Collections
      • Array
        • APIs
        • Implementation
      • Map
        • APIs
        • Implementation
    • Modules
    • Exceptions
  • Built-in modules
    • C
      • APIs
      • Constants
    • Math
      • APIs
      • Constants
    • Task
      • Types
      • APIs
    • Global
  • The aup
    • Compiler
    • Runtime
    • Options
Powered by GitBook
On this page

Was this helpful?

  1. The language

Operators

Operators and precedence

Precedence

Operator

Description

1

++ --

Postfix increment, decrement

()

Call

[]

Subscripting

.

Member access

?.

Member access (null conditional)

2

++ --

Prefix increment, decrement

-

Negative number

!

Logical NOT

~

Bitwise NOT

typeof

Type of value

3

**

Exponent

4

* / %

Factor

5

+ -

Term

6

<< >>

Bitwise left shift, right shift

PreviousDeclarationsNextVariables

Last updated 3 years ago

Was this helpful?