We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The list:
+ - / * % ++ -- ! == != > < >= <= && || as is has [] = += -= *= /= >> << &
Peculiarities:
Typecast operator
var a = 10; int b = a as int;
failure to cast will result in null
Typequery operator
if (foo is int) { do_magic(); }
Queries where a specific string represents a method or a property of certain object
if (foo has "do_magic") { foo.do_magic(); }
Aside of their normal arithmetic function, they're used to modify arrays
array<int> bar = []; bar += 3;
Reserved
There was an error while loading. Please reload this page.