@@ -22,35 +22,35 @@ pub trait SimulationCount {
2222}
2323impl < C : GeoConfig < Diff > + Clone > SimulationCount for GeoDiffCount < ' _ , C > {
2424 fn push_hash ( & mut self , hash : u64 ) {
25- <Self as Count < _ , _ > >:: push_hash ( self , hash)
25+ <Self as Count < _ > >:: push_hash ( self , hash)
2626 }
2727 fn size ( & self ) -> f32 {
28- <Self as Count < _ , _ > >:: size ( self )
28+ <Self as Count < _ > >:: size ( self )
2929 }
3030 fn bytes_in_memory ( & self ) -> usize {
31- <Self as Count < _ , _ > >:: bytes_in_memory ( self )
31+ <Self as Count < _ > >:: bytes_in_memory ( self )
3232 }
3333}
3434impl < C : GeoConfig < Distinct > > SimulationCount for GeoDistinctCount < ' _ , C > {
3535 fn push_hash ( & mut self , hash : u64 ) {
36- <Self as Count < _ , _ > >:: push_hash ( self , hash)
36+ <Self as Count < _ > >:: push_hash ( self , hash)
3737 }
3838 fn size ( & self ) -> f32 {
39- <Self as Count < _ , _ > >:: size ( self )
39+ <Self as Count < _ > >:: size ( self )
4040 }
4141 fn bytes_in_memory ( & self ) -> usize {
42- <Self as Count < _ , _ > >:: bytes_in_memory ( self )
42+ <Self as Count < _ > >:: bytes_in_memory ( self )
4343 }
4444}
4545impl < C : HllConfig > SimulationCount for Hll < C > {
4646 fn push_hash ( & mut self , hash : u64 ) {
47- <Self as Count < _ , _ > >:: push_hash ( self , hash)
47+ <Self as Count < _ > >:: push_hash ( self , hash)
4848 }
4949 fn size ( & self ) -> f32 {
50- <Self as Count < _ , _ > >:: size ( self )
50+ <Self as Count < _ > >:: size ( self )
5151 }
5252 fn bytes_in_memory ( & self ) -> usize {
53- <Self as Count < _ , _ > >:: bytes_in_memory ( self )
53+ <Self as Count < _ > >:: bytes_in_memory ( self )
5454 }
5555}
5656
0 commit comments