Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
da3b2ca
Provide raw &str access from Decoder
Mark-Simulacrum Feb 22, 2022
2098ea6
Provide copy-free access to raw Decoder bytes
Mark-Simulacrum Feb 22, 2022
f1bcb0f
Delete Decoder::read_unit
Mark-Simulacrum Feb 22, 2022
4905814
add matching to errorkind
Dylan-DPC Feb 23, 2022
37cbc7d
add some more summary from pr discussion
Dylan-DPC Feb 23, 2022
057dc09
add some more summary from pr discussion
Dylan-DPC Feb 23, 2022
516e965
Remove unused ordering derivations and bounds for `SimplifiedTypeGen`
pierwill Feb 22, 2022
c403424
remove feature gate in control_flow examples
hellow554 Feb 23, 2022
65614e9
riscv32imc_esp_espidf: set max_atomic_width to 64
MabezDev Feb 22, 2022
dbe0007
:arrow_up: rust-analyzer
lnicola Feb 23, 2022
be454f0
Change `char` type in debuginfo to DW_ATE_UTF
arlosi Oct 14, 2021
715262f
Fix a typo in documentation of `array::IntoIter::new_unchecked`
WaffleLapkin Feb 23, 2022
182d335
Miri: relax fn ptr check
RalfJung Feb 22, 2022
c46d9f6
Update library/std/src/io/error.rs
Dylan-DPC Feb 23, 2022
eb795c2
word wrpa
Dylan-DPC Feb 23, 2022
3f4b039
word wrpa
Dylan-DPC Feb 23, 2022
77a8e60
Rollup merge of #89887 - arlosi:char-debug, r=wesleywiser
matthiaskrgr Feb 24, 2022
8a42e3d
Rollup merge of #94267 - pierwill:fast-reject-bound, r=michaelwoerister
matthiaskrgr Feb 24, 2022
3cd1dc1
Rollup merge of #94270 - RalfJung:fn-ptrs, r=oli-obk
matthiaskrgr Feb 24, 2022
aa0b7ac
Rollup merge of #94273 - Dylan-DPC:doc/errorkind, r=joshtriplett
matthiaskrgr Feb 24, 2022
f3433d1
Rollup merge of #94283 - hellow554:stable_flow_control, r=Dylan-DPC
matthiaskrgr Feb 24, 2022
ae27c4a
Rollup merge of #94288 - Mark-Simulacrum:ser-opt, r=nnethercote
matthiaskrgr Feb 24, 2022
a93be6d
Rollup merge of #94292 - esp-rs:riscv32imc-esp-espidf-64bit-atomics, …
matthiaskrgr Feb 24, 2022
fe9d909
Rollup merge of #94296 - lnicola:rust-analyzer-2022-02-23, r=lnicola
matthiaskrgr Feb 24, 2022
bdcdd1b
Rollup merge of #94300 - WaffleLapkin:patch-4, r=scottmcm
matthiaskrgr Feb 24, 2022
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: 0 additions & 2 deletions library/core/src/ops/control_flow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ impl<B, C> ControlFlow<B, C> {
/// # Examples
///
/// ```
/// #![feature(control_flow_enum)]
/// use std::ops::ControlFlow;
///
/// assert!(ControlFlow::<i32, String>::Break(3).is_break());
Expand All @@ -151,7 +150,6 @@ impl<B, C> ControlFlow<B, C> {
/// # Examples
///
/// ```
/// #![feature(control_flow_enum)]
/// use std::ops::ControlFlow;
///
/// assert!(!ControlFlow::<i32, String>::Break(3).is_continue());
Expand Down