| ... | @@ -1300,10 +1300,10 @@ a /= b{#endsyntax#}</pre></td> | ... | @@ -1300,10 +1300,10 @@ a /= b{#endsyntax#}</pre></td> |
| 1300 | <li>Can cause {#link|overflow|Default Operations#} for integers.</li> | 1300 | <li>Can cause {#link|overflow|Default Operations#} for integers.</li> |
| 1301 | <li>Can cause {#link|Division by Zero#} for integers.</li> | 1301 | <li>Can cause {#link|Division by Zero#} for integers.</li> |
| 1302 | <li>Can cause {#link|Division by Zero#} for floats in {#link|FloatMode.Optimized Mode|Floating Point Operations#}.</li> | 1302 | <li>Can cause {#link|Division by Zero#} for floats in {#link|FloatMode.Optimized Mode|Floating Point Operations#}.</li> |
| 1303 | <li>For non-compile-time-known signed integers, must use | 1303 | <li>Signed integer operands must be comptime-known and positive. In other cases, use |
| 1304 | {#link|@divTrunc#}, | 1304 | {#link|@divTrunc#}, |
| 1305 | {#link|@divFloor#}, or | 1305 | {#link|@divFloor#}, or |
| 1306 | {#link|@divExact#} instead of {#syntax#}/{#endsyntax#}. | 1306 | {#link|@divExact#} instead. |
| 1307 | </li> | 1307 | </li> |
| 1308 | <li>Invokes {#link|Peer Type Resolution#} for the operands.</li> | 1308 | <li>Invokes {#link|Peer Type Resolution#} for the operands.</li> |
| 1309 | </ul> | 1309 | </ul> |
| ... | @@ -1325,9 +1325,9 @@ a %= b{#endsyntax#}</pre></td> | ... | @@ -1325,9 +1325,9 @@ a %= b{#endsyntax#}</pre></td> |
| 1325 | <ul> | 1325 | <ul> |
| 1326 | <li>Can cause {#link|Division by Zero#} for integers.</li> | 1326 | <li>Can cause {#link|Division by Zero#} for integers.</li> |
| 1327 | <li>Can cause {#link|Division by Zero#} for floats in {#link|FloatMode.Optimized Mode|Floating Point Operations#}.</li> | 1327 | <li>Can cause {#link|Division by Zero#} for floats in {#link|FloatMode.Optimized Mode|Floating Point Operations#}.</li> |
| 1328 | <li>For non-compile-time-known signed integers, must use | 1328 | <li>Signed or floating-point operands must be comptime-known and positive. In other cases, use |
| 1329 | {#link|@rem#} or | 1329 | {#link|@rem#} or |
| 1330 | {#link|@mod#} instead of {#syntax#}%{#endsyntax#}. | 1330 | {#link|@mod#} instead. |
| 1331 | </li> | 1331 | </li> |
| 1332 | <li>Invokes {#link|Peer Type Resolution#} for the operands.</li> | 1332 | <li>Invokes {#link|Peer Type Resolution#} for the operands.</li> |
| 1333 | </ul> | 1333 | </ul> |