In is a comparison that means: is any of the values.
(value ...interface{})
| 65 | |
| 66 | // In is a comparison that means: is any of the values. |
| 67 | func In(value ...interface{}) *Comparison { |
| 68 | return &Comparison{adapter.NewComparisonOperator(adapter.ComparisonOperatorIn, toInterfaceArray(value))} |
| 69 | } |
| 70 | |
| 71 | // AnyOf is a comparison that means: is any of the values of the slice. |
| 72 | func AnyOf(value interface{}) *Comparison { |