NotIn is a comparison that means: is none of the values.
(value ...interface{})
| 75 | |
| 76 | // NotIn is a comparison that means: is none of the values. |
| 77 | func NotIn(value ...interface{}) *Comparison { |
| 78 | return &Comparison{adapter.NewComparisonOperator(adapter.ComparisonOperatorNotIn, toInterfaceArray(value))} |
| 79 | } |
| 80 | |
| 81 | // NotAnyOf is a comparison that means: is none of the values of the slice. |
| 82 | func NotAnyOf(value interface{}) *Comparison { |
nothing calls this directly
no test coverage detected
searching dependent graphs…