Merge pull request #2967 from Scony/func-call-operator

function call operator added to operator table
This commit is contained in:
Nathan Lovato
2019-12-31 12:49:55 +01:00
committed by GitHub

View File

@@ -250,6 +250,8 @@ The following is the list of supported operators and their precedence.
+---------------------------------------------------------------+-----------------------------------------+
| ``x.attribute`` | Attribute reference |
+---------------------------------------------------------------+-----------------------------------------+
| ``foo()`` | Function call |
+---------------------------------------------------------------+-----------------------------------------+
| ``is`` | Instance type checker |
+---------------------------------------------------------------+-----------------------------------------+
| ``~`` | Bitwise NOT |