Gt is a comparison that means: is greater than value.
(value interface{})
| 55 | |
| 56 | // Gt is a comparison that means: is greater than value. |
| 57 | func Gt(value interface{}) *Comparison { |
| 58 | return &Comparison{adapter.NewComparisonOperator(adapter.ComparisonOperatorGreaterThan, value)} |
| 59 | } |
| 60 | |
| 61 | // Lt is a comparison that means: is less than value. |
| 62 | func Lt(value interface{}) *Comparison { |