@@ -1367,6 +1367,8 @@ impl f128 {
1367
1367
}
1368
1368
1369
1369
/// Float addition that allows optimizations based on algebraic rules.
1370
+ ///
1371
+ /// See [algebraic operators](primitive@f32#algebraic-operators) for more info.
1370
1372
#[ must_use = "method returns a new number and does not mutate the original value" ]
1371
1373
#[ unstable( feature = "float_algebraic" , issue = "136469" ) ]
1372
1374
#[ inline]
@@ -1375,6 +1377,8 @@ impl f128 {
1375
1377
}
1376
1378
1377
1379
/// Float subtraction that allows optimizations based on algebraic rules.
1380
+ ///
1381
+ /// See [algebraic operators](primitive@f32#algebraic-operators) for more info.
1378
1382
#[ must_use = "method returns a new number and does not mutate the original value" ]
1379
1383
#[ unstable( feature = "float_algebraic" , issue = "136469" ) ]
1380
1384
#[ inline]
@@ -1383,6 +1387,8 @@ impl f128 {
1383
1387
}
1384
1388
1385
1389
/// Float multiplication that allows optimizations based on algebraic rules.
1390
+ ///
1391
+ /// See [algebraic operators](primitive@f32#algebraic-operators) for more info.
1386
1392
#[ must_use = "method returns a new number and does not mutate the original value" ]
1387
1393
#[ unstable( feature = "float_algebraic" , issue = "136469" ) ]
1388
1394
#[ inline]
@@ -1391,6 +1397,8 @@ impl f128 {
1391
1397
}
1392
1398
1393
1399
/// Float division that allows optimizations based on algebraic rules.
1400
+ ///
1401
+ /// See [algebraic operators](primitive@f32#algebraic-operators) for more info.
1394
1402
#[ must_use = "method returns a new number and does not mutate the original value" ]
1395
1403
#[ unstable( feature = "float_algebraic" , issue = "136469" ) ]
1396
1404
#[ inline]
@@ -1399,6 +1407,8 @@ impl f128 {
1399
1407
}
1400
1408
1401
1409
/// Float remainder that allows optimizations based on algebraic rules.
1410
+ ///
1411
+ /// See [algebraic operators](primitive@f32#algebraic-operators) for more info.
1402
1412
#[ must_use = "method returns a new number and does not mutate the original value" ]
1403
1413
#[ unstable( feature = "float_algebraic" , issue = "136469" ) ]
1404
1414
#[ inline]
0 commit comments