Skip to content

Rollup of 14 pull requests #89510

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

Closed
wants to merge 35 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
e2d6334
Add `Ipv6Addr::is_benchmarking`
CDirkx Jun 18, 2021
cbaccc1
Add `IpAddr::is_benchmarking`
CDirkx Jun 18, 2021
e394bb7
BTree: refine some comments
ssomers Aug 1, 2021
22112e4
Remove unnecessary unsafe block in `process_unix`
LeSeulArtichaut Aug 24, 2021
848a38a
Manual Debug for Unix ExitCode ExitStatus ExitStatusError
ijackson Aug 24, 2021
905c2ba
Partially stabilize `array_methods`
jhpratt Aug 26, 2021
ca88f10
Add missing # Panics section to `Vec` method
Seppel3210 Aug 26, 2021
10ddabc
const fn for option copied, take & replace + tests
Jul 2, 2021
eeee5a8
Makes docs for references a little less confusing
WaffleLapkin Aug 26, 2021
aba3608
Update library/std/src/primitive_docs.rs
WaffleLapkin Aug 26, 2021
74c4c01
Mark unsafe NonZero*::unchecked_(add|mul) as const
iago-lito Aug 10, 2021
a993d7d
Fix link in Ipv6Addr::to_ipv4 docs
newpavlov Sep 21, 2021
e017e45
Fix typos in rustdoc/lints
tniessen Oct 2, 2021
83ddedf
Remove various unused feature gates
bjorn3 Aug 29, 2021
998753c
Swap out unboxed_closures feature gate for min_specialization
bjorn3 Aug 29, 2021
e98f289
Turn a module non-doc comment into a doc comment
bjorn3 Aug 29, 2021
9a6f2e6
Only register `WSACleanup` if `WSAStartup` is actually ever called
CDirkx May 24, 2021
b7d2b46
Add test for checking if WS2_32.dll is linked
CDirkx May 24, 2021
5b4873a
Run the #85441 regression test on MSVC only
nagisa Oct 2, 2021
9f4cb86
Replace Fn impls with RPIT impls in rustc_index
bjorn3 Oct 2, 2021
5b66048
Add regression test for spurious const error with NLL
Aaron1011 Oct 3, 2021
484032f
Rollup merge of #86434 - CDirkx:ipv6-benchmarking, r=joshtriplett
Manishearth Oct 4, 2021
1c4129d
Rollup merge of #86828 - lambinoo:67441-const-fn-copied-take-replace,…
Manishearth Oct 4, 2021
ba39a0a
Rollup merge of #87679 - ssomers:btree_comments, r=joshtriplett
Manishearth Oct 4, 2021
deac382
Rollup merge of #87910 - iago-lito:mark_unsafe_nonzero_arithmetics_as…
Manishearth Oct 4, 2021
f8ef948
Rollup merge of #88286 - LeSeulArtichaut:unnecessary-unsafe-block-std…
Manishearth Oct 4, 2021
7fc48c7
Rollup merge of #88305 - ijackson:exitstatus-debug, r=dtolnay
Manishearth Oct 4, 2021
cb835c8
Rollup merge of #88353 - jhpratt:stabilize-array-as-ref, r=joshtriplett
Manishearth Oct 4, 2021
bfdaab8
Rollup merge of #88361 - WaffleLapkin:patch-2, r=joshtriplett
Manishearth Oct 4, 2021
96245bc
Rollup merge of #88370 - Seppel3210:master, r=dtolnay
Manishearth Oct 4, 2021
7f79fea
Rollup merge of #88481 - bjorn3:remove_feature_gates, r=cjgillot
Manishearth Oct 4, 2021
262f75e
Rollup merge of #89138 - newpavlov:patch-2, r=dtolnay
Manishearth Oct 4, 2021
58c60a8
Rollup merge of #89467 - tniessen:rustdoc-unecessary, r=jyn514
Manishearth Oct 4, 2021
43c4355
Rollup merge of #89472 - nagisa:nagisa/wsa-cleanup, r=dtolnay
Manishearth Oct 4, 2021
33178d2
Rollup merge of #89505 - Aaron1011:nll-const-test, r=Mark-Simulacrum
Manishearth Oct 4, 2021
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 library/std/src/net/ip.rs
Original file line number Diff line number Diff line change
@@ -1635,7 +1635,7 @@ impl Ipv6Addr {
/// `::a.b.c.d` and `::ffff:a.b.c.d` become `a.b.c.d`
/// All addresses *not* starting with either all zeroes or `::ffff` will return `None`.
///
/// [IPv4 address]: Ipv4Addr
/// [`IPv4` address]: Ipv4Addr
/// [IPv4-compatible]: Ipv6Addr#ipv4-compatible-ipv6-addresses
/// [IPv4-mapped]: Ipv6Addr#ipv4-mapped-ipv6-addresses
/// [IETF RFC 4291 section 2.5.5.1]: https://tools.ietf.org/html/rfc4291#section-2.5.5.1