Eq is a comparison that means: is equal to value.
(value interface{})
| 45 | |
| 46 | // Eq is a comparison that means: is equal to value. |
| 47 | func Eq(value interface{}) *Comparison { |
| 48 | return &Comparison{adapter.NewComparisonOperator(adapter.ComparisonOperatorEqual, value)} |
| 49 | } |
| 50 | |
| 51 | // NotEq is a comparison that means: is not equal to value. |
| 52 | func NotEq(value interface{}) *Comparison { |