We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
If x @ y appears in a script, it should be changed to x.__matmul__(y). This is used mostly by Numpy.
x @ y
x.__matmul__(y)
If you'd like to get fancy about it, you can also support __rmatmul__ and __imatmul__, but just the first one is enough for now.
__rmatmul__
__imatmul__