NewStringEqualPredicate is just an alias for the equivalent byte predicate
(s string)
| 22 | |
| 23 | // NewStringEqualPredicate is just an alias for the equivalent byte predicate |
| 24 | func NewStringEqualPredicate(s string) Predicate { |
| 25 | return NewByteEqualPredicate([]byte(s)) |
| 26 | } |
| 27 | |
| 28 | // NewStringNotEqualPredicate is just an alias for the equivalent byte predicate |
| 29 | func NewStringNotEqualPredicate(s string) Predicate { |
no test coverage detected