Ada operators

Logical operators:

  • and
  • or
  • xor

Relational operators:

  • /= (Not Equal)
  • =
  • <
  • <=
  • >
  • >=

Binary adding operators:

  • +
  • & (Concatenate)

Unary adding operators:

  • +
  • * Multiplying operator
  • *
  • /
  • mod (modulus)
  • rem (remainder)

Highest precedence operator:

  • ** (Power)
  • not (logical not)
  • abs (absolute value)

References: