Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Rollup of 7 pull requests #133026

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 21 commits into from
Nov 14, 2024
Merged
Changes from 2 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
e8dfe6e
float types: move copysign, abs, signum to libcore
RalfJung Oct 5, 2024
f512051
adjust test gating for f16/f128
RalfJung Oct 5, 2024
b0224fb
add missing safety comments
RalfJung Oct 5, 2024
7d7c054
remove no-longer-needed attribute
RalfJung Nov 1, 2024
87d2c07
new intrinsic declaration
BLANKatGITHUB Nov 12, 2024
3904426
new intrinsic declaration
BLANKatGITHUB Nov 12, 2024
2d3c08a
remove no-longer-needed abs_private
RalfJung Nov 12, 2024
29cfb35
adds new declaration to codegen
BLANKatGITHUB Nov 12, 2024
e0c1c8b
Make `CloneToUninit` dyn-compatible
zachs18 Nov 1, 2024
6dad074
Handle infer vars in anon consts on stable
BoxyUwU Nov 12, 2024
f79eea1
btree: simplify the backdoor between set and map
cuviper Nov 13, 2024
6166b0c
Update core CloneToUninit tests
zachs18 Nov 13, 2024
f432fb4
update outdated comment about test-float-parse
onur-ozkan Nov 13, 2024
7347bee
Add test cases
Eclips4 Nov 13, 2024
5291365
Rollup merge of #131304 - RalfJung:float-core, r=tgross35
workingjubilee Nov 14, 2024
55e05f2
Rollup merge of #132907 - BLANKatGITHUB:intrinsic, r=saethlin
workingjubilee Nov 14, 2024
aa18946
Rollup merge of #132971 - BoxyUwU:handle_infers_in_anon_consts, r=com…
workingjubilee Nov 14, 2024
17dcadd
Rollup merge of #133003 - zachs18:clonetouninit-dyn-compat-u8, r=dtolnay
workingjubilee Nov 14, 2024
966b893
Rollup merge of #133004 - cuviper:unrecover-btree, r=ibraheemdev
workingjubilee Nov 14, 2024
d21a53d
Rollup merge of #133008 - onur-ozkan:update-outdated-comment, r=jieyouxu
workingjubilee Nov 14, 2024
18136cf
Rollup merge of #133012 - Eclips4:issue-125670, r=compiler-errors
workingjubilee Nov 14, 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
2 changes: 1 addition & 1 deletion 2 library/core/src/num/dec2flt/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
//!
//! There are unit tests but they are woefully inadequate at ensuring correctness, they only cover
//! a small percentage of possible errors. Far more extensive tests are located in the directory
//! `src/etc/test-float-parse` as a Python script.
//! `src/etc/test-float-parse` as a Rust program.
//!
//! A note on integer overflow: Many parts of this file perform arithmetic with the decimal
//! exponent `e`. Primarily, we shift the decimal point around: Before the first decimal digit,
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.