Contains checks if the value contains the given value
(y any)
| 35 | |
| 36 | // Contains checks if the value contains the given value |
| 37 | func Contains(y any) Compare { |
| 38 | return func(x any) assert.BoolOrComparison { |
| 39 | return is.Contains(x, y) |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | // Not checks if two values are not |
| 44 | func Not(c Compare) Compare { |
searching dependent graphs…