Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
bebaa8a
add sitemap to rust docs
lolbinarycat Apr 9, 2025
2ce6154
compiler: Include span of too huge array with `-Cdebuginfo=2`
Enselic Aug 30, 2025
4fec3aa
In the rustc_llvm build script, don't consider arm64* to be 32-bit
dpaoliello Sep 3, 2025
02602ef
Implement 'Sum' and 'Product' for 'f16' and 'f128';
bjoernager Sep 7, 2025
aed0ed4
const-eval: disable pointer fragment support
RalfJung Sep 8, 2025
edc94e6
mark `format_args_nl!` as `#[doc(hidden)]`
cyrgani Sep 7, 2025
f7dbd75
Update books
rustbot Sep 8, 2025
8b58777
fix partial urlencoded link support
nixxo Sep 4, 2025
d51f0ea
Reorder test to make failures clearer
madsmtm Sep 8, 2025
fe6f8cc
Weakly export platform_version symbols
madsmtm Sep 8, 2025
9899ab3
simplify the declaration of the legacy integer modules (`std::u32` etc.)
cyrgani Sep 8, 2025
92f2402
port `#[recursion_limit]` to the new attribute parsing infrastructure
jdonszelmann Aug 24, 2025
a38288b
port `#[move_size_limit]` to the new attribute parsing infrastructure
jdonszelmann Aug 24, 2025
5dbe099
port `#[type_length_limit]` to the new attribute parsing infrastructure
jdonszelmann Aug 24, 2025
b82171d
port `#[pattern_complexity_limit]` to the new attribute parsing infra…
jdonszelmann Aug 24, 2025
6087d89
fixup limit handling code
jdonszelmann Aug 24, 2025
8e5f838
Rollup merge of #139593 - lolbinarycat:sitemap, r=jieyouxu
Zalathar Sep 9, 2025
33318ed
Rollup merge of #145819 - jdonszelmann:convert-limits, r=fmease
Zalathar Sep 9, 2025
a4774bf
Rollup merge of #146025 - Enselic:big-array-debuginfo-span, r=wesleyw…
Zalathar Sep 9, 2025
c5a62b8
Rollup merge of #146184 - dpaoliello:llvmbuildarm64, r=cuviper
Zalathar Sep 9, 2025
3bd603b
Rollup merge of #146195 - nixxo:urlencoding-fix, r=ehuss
Zalathar Sep 9, 2025
5985779
Rollup merge of #146300 - bjoernager:f16-f128-sum-product, r=jhpratt
Zalathar Sep 9, 2025
b543b14
Rollup merge of #146314 - cyrgani:hide-fmt-args-nl, r=GuillaumeGomez
Zalathar Sep 9, 2025
915f9ff
Rollup merge of #146324 - RalfJung:no-ptr-fragment, r=oli-obk
Zalathar Sep 9, 2025
fde2ef6
Rollup merge of #146326 - cyrgani:int-module-1, r=jhpratt
Zalathar Sep 9, 2025
94c19de
Rollup merge of #146339 - rustbot:docs-update, r=ehuss
Zalathar Sep 9, 2025
8b9ea58
Rollup merge of #146343 - madsmtm:fix-platform_version, r=tgross35
Zalathar Sep 9, 2025
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/core/src/iter/traits/accum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ macro_rules! float_sum_product {

integer_sum_product! { i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize }
saturating_integer_sum_product! { u8 u16 u32 u64 u128 usize }
float_sum_product! { f32 f64 }
float_sum_product! { f16 f32 f64 f128 }

#[stable(feature = "iter_arith_traits_result", since = "1.16.0")]
impl<T, U, E> Sum<Result<U, E>> for Result<T, E>
Expand Down