Skip to content

Rollup of 6 pull requests #124752

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
May 5, 2024
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
3fd8c64
doc note that f16 and f128 hardware support is limited
ultrabear Apr 13, 2024
8b47f67
rustdoc-search: add index of borrow references
notriddle Apr 19, 2024
3c4e180
rustdoc-search: add parser for `&` syntax
notriddle Apr 19, 2024
c514471
rustdoc-search: docs for reference syntax
notriddle Apr 19, 2024
6967d1c
Stabilize exclusive_range
RossSmyth Apr 28, 2024
57f00ce
Update clippy tests for stable exclusive_range
RossSmyth Apr 28, 2024
f13edeb
Fix bootstrap panic when build from tarball
12101111 May 3, 2024
e30ad6f
Tgross feedback tweaks
ultrabear Apr 14, 2024
3ef2528
Make f16 and f128 docs clearer on platform support
ultrabear Apr 15, 2024
5aa2f9a
Make f128 docs mention lack of any normal platform support
ultrabear May 4, 2024
43c8e13
compiler: upgrade time from 0.3.34 to 0.3.36
calebsander May 4, 2024
fa22863
Fix unwinding on 32-bit watchOS ARM
madsmtm Apr 28, 2024
042d0f5
Rollup merge of #124148 - notriddle:notriddle/reference, r=GuillaumeG…
GuillaumeGomez May 5, 2024
b3342e1
Rollup merge of #124668 - 12101111:fix-bootstrap-tarball, r=onur-ozkan
GuillaumeGomez May 5, 2024
3953df5
Rollup merge of #124736 - calebsander:feature/upgrade-time, r=dtolnay
GuillaumeGomez May 5, 2024
3b8eba9
Rollup merge of #124748 - madsmtm:fix-32bit-watchos-unwind, r=Mark-Si…
GuillaumeGomez May 5, 2024
d3e042d
Rollup merge of #124749 - RossSmyth:stable_range, r=davidtwco
GuillaumeGomez May 5, 2024
4eedf73
Rollup merge of #124750 - ultrabear:ultrabear_softfloatdoc, r=working…
GuillaumeGomez May 5, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
doc note that f16 and f128 hardware support is limited
  • Loading branch information
ultrabear committed Apr 13, 2024
commit 3fd8c6432df4396c7f593e570a27b8d7c1a78b5b
6 changes: 6 additions & 0 deletions library/core/src/primitive_docs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1082,6 +1082,9 @@ impl<T> (T,) {}
/// bits. Please see [the documentation for [`prim@f32`] or [Wikipedia on
/// half-precision values][wikipedia] for more information.
///
/// Note that not all major platforms have hardware support for f16, in which case a
/// software implementation will be used. This may be slower than expected.
///
/// *[See also the `std::f16::consts` module](crate::f16::consts).*
///
/// [wikipedia]: https://en.wikipedia.org/wiki/Half-precision_floating-point_format
Expand Down Expand Up @@ -1181,6 +1184,9 @@ mod prim_f64 {}
/// as many bits as `f64`. Please see [the documentation for [`prim@f32`] or [Wikipedia on
/// quad-precision values][wikipedia] for more information.
///
/// Note that not all major platforms have hardware support for f128, in which case a
/// software implementation will be used. This may be slower than expected.
///
/// *[See also the `std::f128::consts` module](crate::f128::consts).*
///
/// [wikipedia]: https://en.wikipedia.org/wiki/Quadruple-precision_floating-point_format
Expand Down