File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1919 Value : AbstractMonoid < BinOp > + Clone ,
2020 BinOp : Operator ,
2121{
22- fn new ( ) -> ReCalc < Value , BinOp > {
23- ReCalc {
22+ fn new ( ) -> Self {
23+ Self {
2424 stack : VecDeque :: new ( ) ,
2525 op : PhantomData ,
2626 }
Original file line number Diff line number Diff line change 2020 Value : AbstractGroup < BinOp > + Clone ,
2121 BinOp : Operator ,
2222{
23- fn new ( ) -> SoE < Value , BinOp > {
24- SoE {
23+ fn new ( ) -> Self {
24+ Self {
2525 stack : VecDeque :: new ( ) ,
2626 agg : Value :: identity ( ) ,
2727 op : PhantomData ,
Original file line number Diff line number Diff line change 2828 Value : AbstractMonoid < BinOp > + Clone ,
2929 BinOp : Operator ,
3030{
31- fn new ( ) -> TwoStacks < Value , BinOp > {
32- TwoStacks {
31+ fn new ( ) -> Self {
32+ Self {
3333 front : Vec :: new ( ) ,
3434 back : Vec :: new ( ) ,
3535 op : PhantomData ,
You can’t perform that action at this time.
0 commit comments