@@ -1173,133 +1173,133 @@ extern "rust-intrinsic" {
1173
1173
/// Returns the square root of an `f32`
1174
1174
///
1175
1175
/// The stabilized version of this intrinsic is
1176
- /// [`std:: f32::sqrt`](../../std/primitive.f32.html#method.sqrt)
1176
+ /// [`f32::sqrt`](../../std/primitive.f32.html#method.sqrt)
1177
1177
pub fn sqrtf32 ( x : f32 ) -> f32 ;
1178
1178
/// Returns the square root of an `f64`
1179
1179
///
1180
1180
/// The stabilized version of this intrinsic is
1181
- /// [`std:: f64::sqrt`](../../std/primitive.f64.html#method.sqrt)
1181
+ /// [`f64::sqrt`](../../std/primitive.f64.html#method.sqrt)
1182
1182
pub fn sqrtf64 ( x : f64 ) -> f64 ;
1183
1183
1184
1184
/// Raises an `f32` to an integer power.
1185
1185
///
1186
1186
/// The stabilized version of this intrinsic is
1187
- /// [`std:: f32::powi`](../../std/primitive.f32.html#method.powi)
1187
+ /// [`f32::powi`](../../std/primitive.f32.html#method.powi)
1188
1188
pub fn powif32 ( a : f32 , x : i32 ) -> f32 ;
1189
1189
/// Raises an `f64` to an integer power.
1190
1190
///
1191
1191
/// The stabilized version of this intrinsic is
1192
- /// [`std:: f64::powi`](../../std/primitive.f64.html#method.powi)
1192
+ /// [`f64::powi`](../../std/primitive.f64.html#method.powi)
1193
1193
pub fn powif64 ( a : f64 , x : i32 ) -> f64 ;
1194
1194
1195
1195
/// Returns the sine of an `f32`.
1196
1196
///
1197
1197
/// The stabilized version of this intrinsic is
1198
- /// [`std:: f32::sin`](../../std/primitive.f32.html#method.sin)
1198
+ /// [`f32::sin`](../../std/primitive.f32.html#method.sin)
1199
1199
pub fn sinf32 ( x : f32 ) -> f32 ;
1200
1200
/// Returns the sine of an `f64`.
1201
1201
///
1202
1202
/// The stabilized version of this intrinsic is
1203
- /// [`std:: f64::sin`](../../std/primitive.f64.html#method.sin)
1203
+ /// [`f64::sin`](../../std/primitive.f64.html#method.sin)
1204
1204
pub fn sinf64 ( x : f64 ) -> f64 ;
1205
1205
1206
1206
/// Returns the cosine of an `f32`.
1207
1207
///
1208
1208
/// The stabilized version of this intrinsic is
1209
- /// [`std:: f32::cos`](../../std/primitive.f32.html#method.cos)
1209
+ /// [`f32::cos`](../../std/primitive.f32.html#method.cos)
1210
1210
pub fn cosf32 ( x : f32 ) -> f32 ;
1211
1211
/// Returns the cosine of an `f64`.
1212
1212
///
1213
1213
/// The stabilized version of this intrinsic is
1214
- /// [`std:: f64::cos`](../../std/primitive.f64.html#method.cos)
1214
+ /// [`f64::cos`](../../std/primitive.f64.html#method.cos)
1215
1215
pub fn cosf64 ( x : f64 ) -> f64 ;
1216
1216
1217
1217
/// Raises an `f32` to an `f32` power.
1218
1218
///
1219
1219
/// The stabilized version of this intrinsic is
1220
- /// [`std:: f32::powf`](../../std/primitive.f32.html#method.powf)
1220
+ /// [`f32::powf`](../../std/primitive.f32.html#method.powf)
1221
1221
pub fn powf32 ( a : f32 , x : f32 ) -> f32 ;
1222
1222
/// Raises an `f64` to an `f64` power.
1223
1223
///
1224
1224
/// The stabilized version of this intrinsic is
1225
- /// [`std:: f64::powf`](../../std/primitive.f64.html#method.powf)
1225
+ /// [`f64::powf`](../../std/primitive.f64.html#method.powf)
1226
1226
pub fn powf64 ( a : f64 , x : f64 ) -> f64 ;
1227
1227
1228
1228
/// Returns the exponential of an `f32`.
1229
1229
///
1230
1230
/// The stabilized version of this intrinsic is
1231
- /// [`std:: f32::exp`](../../std/primitive.f32.html#method.exp)
1231
+ /// [`f32::exp`](../../std/primitive.f32.html#method.exp)
1232
1232
pub fn expf32 ( x : f32 ) -> f32 ;
1233
1233
/// Returns the exponential of an `f64`.
1234
1234
///
1235
1235
/// The stabilized version of this intrinsic is
1236
- /// [`std:: f64::exp`](../../std/primitive.f64.html#method.exp)
1236
+ /// [`f64::exp`](../../std/primitive.f64.html#method.exp)
1237
1237
pub fn expf64 ( x : f64 ) -> f64 ;
1238
1238
1239
1239
/// Returns 2 raised to the power of an `f32`.
1240
1240
///
1241
1241
/// The stabilized version of this intrinsic is
1242
- /// [`std:: f32::exp2`](../../std/primitive.f32.html#method.exp2)
1242
+ /// [`f32::exp2`](../../std/primitive.f32.html#method.exp2)
1243
1243
pub fn exp2f32 ( x : f32 ) -> f32 ;
1244
1244
/// Returns 2 raised to the power of an `f64`.
1245
1245
///
1246
1246
/// The stabilized version of this intrinsic is
1247
- /// [`std:: f64::exp2`](../../std/primitive.f64.html#method.exp2)
1247
+ /// [`f64::exp2`](../../std/primitive.f64.html#method.exp2)
1248
1248
pub fn exp2f64 ( x : f64 ) -> f64 ;
1249
1249
1250
1250
/// Returns the natural logarithm of an `f32`.
1251
1251
///
1252
1252
/// The stabilized version of this intrinsic is
1253
- /// [`std:: f32::ln`](../../std/primitive.f32.html#method.ln)
1253
+ /// [`f32::ln`](../../std/primitive.f32.html#method.ln)
1254
1254
pub fn logf32 ( x : f32 ) -> f32 ;
1255
1255
/// Returns the natural logarithm of an `f64`.
1256
1256
///
1257
1257
/// The stabilized version of this intrinsic is
1258
- /// [`std:: f64::ln`](../../std/primitive.f64.html#method.ln)
1258
+ /// [`f64::ln`](../../std/primitive.f64.html#method.ln)
1259
1259
pub fn logf64 ( x : f64 ) -> f64 ;
1260
1260
1261
1261
/// Returns the base 10 logarithm of an `f32`.
1262
1262
///
1263
1263
/// The stabilized version of this intrinsic is
1264
- /// [`std:: f32::log10`](../../std/primitive.f32.html#method.log10)
1264
+ /// [`f32::log10`](../../std/primitive.f32.html#method.log10)
1265
1265
pub fn log10f32 ( x : f32 ) -> f32 ;
1266
1266
/// Returns the base 10 logarithm of an `f64`.
1267
1267
///
1268
1268
/// The stabilized version of this intrinsic is
1269
- /// [`std:: f64::log10`](../../std/primitive.f64.html#method.log10)
1269
+ /// [`f64::log10`](../../std/primitive.f64.html#method.log10)
1270
1270
pub fn log10f64 ( x : f64 ) -> f64 ;
1271
1271
1272
1272
/// Returns the base 2 logarithm of an `f32`.
1273
1273
///
1274
1274
/// The stabilized version of this intrinsic is
1275
- /// [`std:: f32::log2`](../../std/primitive.f32.html#method.log2)
1275
+ /// [`f32::log2`](../../std/primitive.f32.html#method.log2)
1276
1276
pub fn log2f32 ( x : f32 ) -> f32 ;
1277
1277
/// Returns the base 2 logarithm of an `f64`.
1278
1278
///
1279
1279
/// The stabilized version of this intrinsic is
1280
- /// [`std:: f64::log2`](../../std/primitive.f64.html#method.log2)
1280
+ /// [`f64::log2`](../../std/primitive.f64.html#method.log2)
1281
1281
pub fn log2f64 ( x : f64 ) -> f64 ;
1282
1282
1283
1283
/// Returns `a * b + c` for `f32` values.
1284
1284
///
1285
1285
/// The stabilized version of this intrinsic is
1286
- /// [`std:: f32::mul_add`](../../std/primitive.f32.html#method.mul_add)
1286
+ /// [`f32::mul_add`](../../std/primitive.f32.html#method.mul_add)
1287
1287
pub fn fmaf32 ( a : f32 , b : f32 , c : f32 ) -> f32 ;
1288
1288
/// Returns `a * b + c` for `f64` values.
1289
1289
///
1290
1290
/// The stabilized version of this intrinsic is
1291
- /// [`std:: f64::mul_add`](../../std/primitive.f64.html#method.mul_add)
1291
+ /// [`f64::mul_add`](../../std/primitive.f64.html#method.mul_add)
1292
1292
pub fn fmaf64 ( a : f64 , b : f64 , c : f64 ) -> f64 ;
1293
1293
1294
1294
/// Returns the absolute value of an `f32`.
1295
1295
///
1296
1296
/// The stabilized version of this intrinsic is
1297
- /// [`std:: f32::abs`](../../std/primitive.f32.html#method.abs)
1297
+ /// [`f32::abs`](../../std/primitive.f32.html#method.abs)
1298
1298
pub fn fabsf32 ( x : f32 ) -> f32 ;
1299
1299
/// Returns the absolute value of an `f64`.
1300
1300
///
1301
1301
/// The stabilized version of this intrinsic is
1302
- /// [`std:: f64::abs`](../../std/primitive.f64.html#method.abs)
1302
+ /// [`f64::abs`](../../std/primitive.f64.html#method.abs)
1303
1303
pub fn fabsf64 ( x : f64 ) -> f64 ;
1304
1304
1305
1305
/// Returns the minimum of two `f32` values.
@@ -1326,45 +1326,45 @@ extern "rust-intrinsic" {
1326
1326
/// Copies the sign from `y` to `x` for `f32` values.
1327
1327
///
1328
1328
/// The stabilized version of this intrinsic is
1329
- /// [`std:: f32::copysign`](../../std/primitive.f32.html#method.copysign)
1329
+ /// [`f32::copysign`](../../std/primitive.f32.html#method.copysign)
1330
1330
pub fn copysignf32 ( x : f32 , y : f32 ) -> f32 ;
1331
1331
/// Copies the sign from `y` to `x` for `f64` values.
1332
1332
///
1333
1333
/// The stabilized version of this intrinsic is
1334
- /// [`std:: f64::copysign`](../../std/primitive.f64.html#method.copysign)
1334
+ /// [`f64::copysign`](../../std/primitive.f64.html#method.copysign)
1335
1335
pub fn copysignf64 ( x : f64 , y : f64 ) -> f64 ;
1336
1336
1337
1337
/// Returns the largest integer less than or equal to an `f32`.
1338
1338
///
1339
1339
/// The stabilized version of this intrinsic is
1340
- /// [`std:: f32::floor`](../../std/primitive.f32.html#method.floor)
1340
+ /// [`f32::floor`](../../std/primitive.f32.html#method.floor)
1341
1341
pub fn floorf32 ( x : f32 ) -> f32 ;
1342
1342
/// Returns the largest integer less than or equal to an `f64`.
1343
1343
///
1344
1344
/// The stabilized version of this intrinsic is
1345
- /// [`std:: f64::floor`](../../std/primitive.f64.html#method.floor)
1345
+ /// [`f64::floor`](../../std/primitive.f64.html#method.floor)
1346
1346
pub fn floorf64 ( x : f64 ) -> f64 ;
1347
1347
1348
1348
/// Returns the smallest integer greater than or equal to an `f32`.
1349
1349
///
1350
1350
/// The stabilized version of this intrinsic is
1351
- /// [`std:: f32::ceil`](../../std/primitive.f32.html#method.ceil)
1351
+ /// [`f32::ceil`](../../std/primitive.f32.html#method.ceil)
1352
1352
pub fn ceilf32 ( x : f32 ) -> f32 ;
1353
1353
/// Returns the smallest integer greater than or equal to an `f64`.
1354
1354
///
1355
1355
/// The stabilized version of this intrinsic is
1356
- /// [`std:: f64::ceil`](../../std/primitive.f64.html#method.ceil)
1356
+ /// [`f64::ceil`](../../std/primitive.f64.html#method.ceil)
1357
1357
pub fn ceilf64 ( x : f64 ) -> f64 ;
1358
1358
1359
1359
/// Returns the integer part of an `f32`.
1360
1360
///
1361
1361
/// The stabilized version of this intrinsic is
1362
- /// [`std:: f32::trunc`](../../std/primitive.f32.html#method.trunc)
1362
+ /// [`f32::trunc`](../../std/primitive.f32.html#method.trunc)
1363
1363
pub fn truncf32 ( x : f32 ) -> f32 ;
1364
1364
/// Returns the integer part of an `f64`.
1365
1365
///
1366
1366
/// The stabilized version of this intrinsic is
1367
- /// [`std:: f64::trunc`](../../std/primitive.f64.html#method.trunc)
1367
+ /// [`f64::trunc`](../../std/primitive.f64.html#method.trunc)
1368
1368
pub fn truncf64 ( x : f64 ) -> f64 ;
1369
1369
1370
1370
/// Returns the nearest integer to an `f32`. May raise an inexact floating-point exception
@@ -1386,12 +1386,12 @@ extern "rust-intrinsic" {
1386
1386
/// Returns the nearest integer to an `f32`. Rounds half-way cases away from zero.
1387
1387
///
1388
1388
/// The stabilized version of this intrinsic is
1389
- /// [`std:: f32::round`](../../std/primitive.f32.html#method.round)
1389
+ /// [`f32::round`](../../std/primitive.f32.html#method.round)
1390
1390
pub fn roundf32 ( x : f32 ) -> f32 ;
1391
1391
/// Returns the nearest integer to an `f64`. Rounds half-way cases away from zero.
1392
1392
///
1393
1393
/// The stabilized version of this intrinsic is
1394
- /// [`std:: f64::round`](../../std/primitive.f64.html#method.round)
1394
+ /// [`f64::round`](../../std/primitive.f64.html#method.round)
1395
1395
pub fn roundf64 ( x : f64 ) -> f64 ;
1396
1396
1397
1397
/// Float addition that allows optimizations based on algebraic rules.
0 commit comments