Skip to content

Commit

Permalink
Remove spurious bound
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmcsherry committed Nov 11, 2023
1 parent 344e034 commit 6ea9d1d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/trace/layers/ordered.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ where

impl<K, L, O, C> Trie for OrderedLayer<K, L, O, C>
where
K: Ord+Clone,
K: Ord,
C: BatchContainer<Item=K>+Deref<Target=[K]>,
L: Trie,
O: OrdOffset
Expand Down Expand Up @@ -76,7 +76,7 @@ where
/// Assembles a layer of this
pub struct OrderedBuilder<K, L, O=usize, C=Vec<K>>
where
K: Ord+Clone,
K: Ord,
C: BatchContainer<Item=K>+Deref<Target=[K]>,
O: OrdOffset
{
Expand All @@ -90,7 +90,7 @@ where

impl<K, L, O, C> Builder for OrderedBuilder<K, L, O, C>
where
K: Ord+Clone,
K: Ord,
C: BatchContainer<Item=K>+Deref<Target=[K]>,
L: Builder,
O: OrdOffset
Expand All @@ -114,7 +114,7 @@ where

impl<K, L, O, C> MergeBuilder for OrderedBuilder<K, L, O, C>
where
K: Ord+Clone,
K: Ord,
C: BatchContainer<Item=K>+Deref<Target=[K]>,
L: MergeBuilder,
O: OrdOffset
Expand Down Expand Up @@ -161,7 +161,7 @@ where

impl<K, L, O, C> OrderedBuilder<K, L, O, C>
where
K: Ord+Clone,
K: Ord,
C: BatchContainer<Item=K>+Deref<Target=[K]>,
L: MergeBuilder,
O: OrdOffset
Expand Down Expand Up @@ -209,7 +209,7 @@ where

impl<K, L, O, C> TupleBuilder for OrderedBuilder<K, L, O, C>
where
K: Ord+Clone,
K: Ord,
C: BatchContainer<Item=K>+Deref<Target=[K]>,
L: TupleBuilder,
O: OrdOffset
Expand Down Expand Up @@ -251,7 +251,7 @@ pub struct OrderedCursor<L: Trie> {

impl<K, L, O, C> Cursor<OrderedLayer<K, L, O, C>> for OrderedCursor<L>
where
K: Ord+Clone,
K: Ord,
C: BatchContainer<Item=K>+Deref<Target=[K]>,
L: Trie,
O: OrdOffset
Expand Down

0 comments on commit 6ea9d1d

Please sign in to comment.