Skip to content
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

Sum/Product traits don't forward &Self properly #345

Open
obscurans opened this issue Mar 31, 2024 · 0 comments
Open

Sum/Product traits don't forward &Self properly #345

obscurans opened this issue Mar 31, 2024 · 0 comments

Comments

@obscurans
Copy link

obscurans commented Mar 31, 2024

rustc 1.76.0, derive_more 1.0.0-beta.6

This is a very common use case for derived Sum and Product:

#[derive(From, Add, Sum, Mul, Product)
#[mul(forward)]
struct Foo(i32);

let x: Vec<Foo> = vec![1.into(), 2.into(), 3.into()];
let y: Foo = x.iter().sum();
let z: Foo = x.iter().product();

which isn't derived:

error[E0277]: a value of type `Foo` cannot be made by summing an iterator over elements of type `&Foo`
   |
   | let y: &Foo = x.iter().sum();
   |                        ^^^ value of type `&Foo` cannot be made by summing a `std::iter::Iterator<Item=&Foo>`
   |
   = help: the trait `derive_more::Sum<&Foo>` is not implemented for `&Foo`
   = help: the trait `derive_more::Sum` is implemented for `Foo`
note: the method call chain might not have had the expected associated types
   |
   | let x: Vec<Foo> = vec![1.into(), 2.into(), 3.into()];
   |                   ---------------------------------- this expression has type `Vec<Foo>`
   | let y: &Foo = x.iter().sum();
   |                 ^^^^^^ `Iterator::Item` is `&Foo` here
note: required by a bound in `std::iter::Iterator::sum`
  --> /rustc/07dca489ac2d933c78d3c5158e3f43beefeb02ce/library/core/src/iter/traits/iterator.rs:3630:5

error[E0277]: a value of type `Foo` cannot be made by multiplying all elements of type `&Foo` from an iterator
   |
   |     let z: Foo = x.iter().product();
   |                           ^^^^^^^ value of type `Foo` cannot be made by multiplying all elements from a `std::iter::Iterator<Item=&Foo>`
   |
   = help: the trait `derive_more::Product<&Foo>` is not implemented for `Foo`
   = help: the trait `derive_more::Product` is implemented for `Foo`
   = help: for that trait implementation, expected `Foo`, found `&Foo`
note: the method call chain might not have had the expected associated types
   |
   |     let x: Vec<Foo> = vec![1.into(), 2.into(), 3.into()];
   |                       ---------------------------------- this expression has type `Vec<Foo>`
   |     let y: Foo = x.iter().sum();
   |     let z: Foo = x.iter().product();
   |                    ^^^^^^ `Iterator::Item` is `&Foo` here
note: required by a bound in `std::iter::Iterator::product`
  --> /rustc/07dca489ac2d933c78d3c5158e3f43beefeb02ce/library/core/src/iter/traits/iterator.rs:3663:5

Note that std::iter::Sum gives impl<'a> Sum<&'a NUMERIC> for NUMERIC for a bunch of types.

@obscurans obscurans changed the title Sum/Product traits don't forward properly Sum/Product traits don't forward &Self properly Mar 31, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant