NewStringNotEqualPredicate is just an alias for the equivalent byte predicate
(s string)
| 27 | |
| 28 | // NewStringNotEqualPredicate is just an alias for the equivalent byte predicate |
| 29 | func NewStringNotEqualPredicate(s string) Predicate { |
| 30 | return NewByteNotEqualPredicate([]byte(s)) |
| 31 | } |
| 32 | |
| 33 | // ByteInPredicate checks for any of the given strings. Case-sensitive exact byte matching |
| 34 | type ByteInPredicate struct { |
no test coverage detected