@@ -1173,133 +1173,133 @@ extern "rust-intrinsic" {
11731173 /// Returns the square root of an `f32`
11741174 ///
11751175 /// 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)
11771177 pub fn sqrtf32 ( x : f32 ) -> f32 ;
11781178 /// Returns the square root of an `f64`
11791179 ///
11801180 /// 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)
11821182 pub fn sqrtf64 ( x : f64 ) -> f64 ;
11831183
11841184 /// Raises an `f32` to an integer power.
11851185 ///
11861186 /// 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)
11881188 pub fn powif32 ( a : f32 , x : i32 ) -> f32 ;
11891189 /// Raises an `f64` to an integer power.
11901190 ///
11911191 /// 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)
11931193 pub fn powif64 ( a : f64 , x : i32 ) -> f64 ;
11941194
11951195 /// Returns the sine of an `f32`.
11961196 ///
11971197 /// 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)
11991199 pub fn sinf32 ( x : f32 ) -> f32 ;
12001200 /// Returns the sine of an `f64`.
12011201 ///
12021202 /// 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)
12041204 pub fn sinf64 ( x : f64 ) -> f64 ;
12051205
12061206 /// Returns the cosine of an `f32`.
12071207 ///
12081208 /// 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)
12101210 pub fn cosf32 ( x : f32 ) -> f32 ;
12111211 /// Returns the cosine of an `f64`.
12121212 ///
12131213 /// 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)
12151215 pub fn cosf64 ( x : f64 ) -> f64 ;
12161216
12171217 /// Raises an `f32` to an `f32` power.
12181218 ///
12191219 /// 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)
12211221 pub fn powf32 ( a : f32 , x : f32 ) -> f32 ;
12221222 /// Raises an `f64` to an `f64` power.
12231223 ///
12241224 /// 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)
12261226 pub fn powf64 ( a : f64 , x : f64 ) -> f64 ;
12271227
12281228 /// Returns the exponential of an `f32`.
12291229 ///
12301230 /// 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)
12321232 pub fn expf32 ( x : f32 ) -> f32 ;
12331233 /// Returns the exponential of an `f64`.
12341234 ///
12351235 /// 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)
12371237 pub fn expf64 ( x : f64 ) -> f64 ;
12381238
12391239 /// Returns 2 raised to the power of an `f32`.
12401240 ///
12411241 /// 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)
12431243 pub fn exp2f32 ( x : f32 ) -> f32 ;
12441244 /// Returns 2 raised to the power of an `f64`.
12451245 ///
12461246 /// 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)
12481248 pub fn exp2f64 ( x : f64 ) -> f64 ;
12491249
12501250 /// Returns the natural logarithm of an `f32`.
12511251 ///
12521252 /// 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)
12541254 pub fn logf32 ( x : f32 ) -> f32 ;
12551255 /// Returns the natural logarithm of an `f64`.
12561256 ///
12571257 /// 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)
12591259 pub fn logf64 ( x : f64 ) -> f64 ;
12601260
12611261 /// Returns the base 10 logarithm of an `f32`.
12621262 ///
12631263 /// 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)
12651265 pub fn log10f32 ( x : f32 ) -> f32 ;
12661266 /// Returns the base 10 logarithm of an `f64`.
12671267 ///
12681268 /// 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)
12701270 pub fn log10f64 ( x : f64 ) -> f64 ;
12711271
12721272 /// Returns the base 2 logarithm of an `f32`.
12731273 ///
12741274 /// 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)
12761276 pub fn log2f32 ( x : f32 ) -> f32 ;
12771277 /// Returns the base 2 logarithm of an `f64`.
12781278 ///
12791279 /// 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)
12811281 pub fn log2f64 ( x : f64 ) -> f64 ;
12821282
12831283 /// Returns `a * b + c` for `f32` values.
12841284 ///
12851285 /// 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)
12871287 pub fn fmaf32 ( a : f32 , b : f32 , c : f32 ) -> f32 ;
12881288 /// Returns `a * b + c` for `f64` values.
12891289 ///
12901290 /// 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)
12921292 pub fn fmaf64 ( a : f64 , b : f64 , c : f64 ) -> f64 ;
12931293
12941294 /// Returns the absolute value of an `f32`.
12951295 ///
12961296 /// 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)
12981298 pub fn fabsf32 ( x : f32 ) -> f32 ;
12991299 /// Returns the absolute value of an `f64`.
13001300 ///
13011301 /// 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)
13031303 pub fn fabsf64 ( x : f64 ) -> f64 ;
13041304
13051305 /// Returns the minimum of two `f32` values.
@@ -1326,45 +1326,45 @@ extern "rust-intrinsic" {
13261326 /// Copies the sign from `y` to `x` for `f32` values.
13271327 ///
13281328 /// 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)
13301330 pub fn copysignf32 ( x : f32 , y : f32 ) -> f32 ;
13311331 /// Copies the sign from `y` to `x` for `f64` values.
13321332 ///
13331333 /// 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)
13351335 pub fn copysignf64 ( x : f64 , y : f64 ) -> f64 ;
13361336
13371337 /// Returns the largest integer less than or equal to an `f32`.
13381338 ///
13391339 /// 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)
13411341 pub fn floorf32 ( x : f32 ) -> f32 ;
13421342 /// Returns the largest integer less than or equal to an `f64`.
13431343 ///
13441344 /// 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)
13461346 pub fn floorf64 ( x : f64 ) -> f64 ;
13471347
13481348 /// Returns the smallest integer greater than or equal to an `f32`.
13491349 ///
13501350 /// 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)
13521352 pub fn ceilf32 ( x : f32 ) -> f32 ;
13531353 /// Returns the smallest integer greater than or equal to an `f64`.
13541354 ///
13551355 /// 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)
13571357 pub fn ceilf64 ( x : f64 ) -> f64 ;
13581358
13591359 /// Returns the integer part of an `f32`.
13601360 ///
13611361 /// 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)
13631363 pub fn truncf32 ( x : f32 ) -> f32 ;
13641364 /// Returns the integer part of an `f64`.
13651365 ///
13661366 /// 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)
13681368 pub fn truncf64 ( x : f64 ) -> f64 ;
13691369
13701370 /// Returns the nearest integer to an `f32`. May raise an inexact floating-point exception
@@ -1386,12 +1386,12 @@ extern "rust-intrinsic" {
13861386 /// Returns the nearest integer to an `f32`. Rounds half-way cases away from zero.
13871387 ///
13881388 /// 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)
13901390 pub fn roundf32 ( x : f32 ) -> f32 ;
13911391 /// Returns the nearest integer to an `f64`. Rounds half-way cases away from zero.
13921392 ///
13931393 /// 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)
13951395 pub fn roundf64 ( x : f64 ) -> f64 ;
13961396
13971397 /// Float addition that allows optimizations based on algebraic rules.
0 commit comments