AnyOf is a comparison that means: is any of the values of the slice.
(value interface{})
| 70 | |
| 71 | // AnyOf is a comparison that means: is any of the values of the slice. |
| 72 | func AnyOf(value interface{}) *Comparison { |
| 73 | return &Comparison{adapter.NewComparisonOperator(adapter.ComparisonOperatorIn, toInterfaceArray(value))} |
| 74 | } |
| 75 | |
| 76 | // NotIn is a comparison that means: is none of the values. |
| 77 | func NotIn(value ...interface{}) *Comparison { |
nothing calls this directly
no test coverage detected
searching dependent graphs…