(cs ...v3.Cmp)
| 32 | } |
| 33 | |
| 34 | func (txn *txnLeasing) If(cs ...v3.Cmp) v3.Txn { |
| 35 | txn.cs = append(txn.cs, cs...) |
| 36 | txn.Txn = txn.Txn.If(cs...) |
| 37 | return txn |
| 38 | } |
| 39 | |
| 40 | func (txn *txnLeasing) Then(ops ...v3.Op) v3.Txn { |
| 41 | txn.opst = append(txn.opst, ops...) |