Kaydet (Commit) bd592417 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

add matrix multiplication operator to correct lists (closes #22142)

üst b40cf1f8
...@@ -689,7 +689,7 @@ Operators ...@@ -689,7 +689,7 @@ Operators
The following tokens are operators:: The following tokens are operators::
+ - * ** / // % + - * ** / // % @
<< >> & | ^ ~ << >> & | ^ ~
< > <= >= == != < > <= >= == !=
...@@ -705,7 +705,7 @@ The following tokens serve as delimiters in the grammar:: ...@@ -705,7 +705,7 @@ The following tokens serve as delimiters in the grammar::
( ) [ ] { } ( ) [ ] { }
, : . ; @ = -> , : . ; @ = ->
+= -= *= /= //= %= += -= *= /= //= %= @=
&= |= ^= >>= <<= **= &= |= ^= >>= <<= **=
The period can also occur in floating-point and imaginary literals. A sequence The period can also occur in floating-point and imaginary literals. A sequence
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment