Lt is a comparison that means: is less than value.
(value interface{})
| 60 | |
| 61 | // Lt is a comparison that means: is less than value. |
| 62 | func Lt(value interface{}) *Comparison { |
| 63 | return &Comparison{adapter.NewComparisonOperator(adapter.ComparisonOperatorLessThan, value)} |
| 64 | } |
| 65 | |
| 66 | // In is a comparison that means: is any of the values. |
| 67 | func In(value ...interface{}) *Comparison { |