Relevance Operators

OperatorEffect Grammatic Value
&The string concatenation operator. &
,The tuple operator. Creates a tuple of objects. ,
;The collection operator. Collects its operands into one plural result. ;
+The sum operator. +
-The subtraction operator. -
*The multiplication operator. *
/The division operator. /
=Equivalent to the ‘is’ keyword. relation
!=Equivalent to ‘is not’. relation
<The ‘less than’ operator. relation
<=The ‘less than or equal to’ operator. relation
>The ‘greater than’ operator. relation
>=The ‘greater than or equal to’ operator. relation