- Removed notes
- Removed superfluous uses of `where`
This commit is contained in:
2023-05-23 18:39:45 +01:00
parent 8bb82b8ead
commit e99ade92ba
63 changed files with 76 additions and 1973 deletions

View File

@@ -101,8 +101,8 @@ impl<TItem: Clone, TExt: Clone> Module<TItem, TExt> {
}
}
impl<TItem: Clone, TExt: Clone> Add for Module<TItem, TExt>
where TExt: Add<Output = TExt>
impl<TItem: Clone, TExt: Clone + Add<Output = TExt>> Add
for Module<TItem, TExt>
{
type Output = Self;