From Jason Turner

[over.match.oper]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpsq9h7ui_/{from.md → to.md} +11 -0
tmp/tmpsq9h7ui_/{from.md → to.md} RENAMED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ **Table: Relationship between operator and function call notation** <a id="over.match.oper">[over.match.oper]</a>
2
+
3
+ | Subclause | Expression | As member function | As non-member function |
4
+ | ------------ | ---------- | ------------------- | ---------------------- |
5
+ | (a)} |
6
+ | (a, b)} |
7
+ | [[over.ass]] | `a=b` | `(a).operator= (b)` | |
8
+ | [[over.sub]] | `a[b]` | `(a).operator[](b)` | |
9
+ | [[over.ref]] | `a->` | `(a).operator->( )` | |
10
+ | (a, 0)} |
11
+