File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Top Open diff view settings Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Top Open diff view settings Original file line number Diff line number Diff line change @@ -1261,6 +1261,22 @@ const ptr = &x;
12611261x.* == 1234</code></pre>
12621262 </td>
12631263 </tr>
1264+ <tr>
1265+ <td><pre><code class="zig">a || b<code></pre></td>
1266+ <td>
1267+ <ul>
1268+ <li>{#link|Error Set Type#}</li>
1269+ </ul>
1270+ </td>
1271+ <td>
1272+ {#link|Merging Error Sets#}
1273+ </td>
1274+ <td>
1275+ <pre><code class="zig">const A = error{One};
1276+ const B = error{Two};
1277+ (A || B) == error{One, Two}</code></pre>
1278+ </td>
1279+ </tr>
12641280 </table>
12651281 </div>
12661282 {#header_close#}
@@ -1269,7 +1285,7 @@ x.* == 1234</code></pre>
12691285a!b
12701286!x -x -%x ~x &x ?x
12711287x{} x.* x.?
1272- ! * / % ** *%
1288+ ! * / % ** *% ||
12731289+ - ++ +% -%
12741290<< >>
12751291&
You can’t perform that action at this time.
0 commit comments