Skip to content

Commit

Permalink
Auto merge of #107462 - WaffleLapkin:from_iterator_for_tuple, r=dtolnay
Browse files Browse the repository at this point in the history
Implement `FromIterator` for `(impl Default + Extend, impl Default + Extend)`

Similarly to how rust-lang/rust#85835 implemented `Extend` for `(impl Extend, impl Extend)`:
```rust
impl<A, B, AE, BE> FromIterator<(AE, BE)> for (A, B)
where
    A: Default + Extend<AE>,
    B: Default + Extend<BE>,
{ ... }
```
  • Loading branch information
bors committed Apr 14, 2024
2 parents 8e1c7a8 + 4ee4d71 commit c493fdb
Showing 0 changed files with 0 additions and 0 deletions.

0 comments on commit c493fdb

Please sign in to comment.