In returns the `IN` predicate.
(col string, args ...any)
| 1048 | |
| 1049 | // In returns the `IN` predicate. |
| 1050 | func In(col string, args ...any) *Predicate { |
| 1051 | return P().In(col, args...) |
| 1052 | } |
| 1053 | |
| 1054 | // In appends the `IN` predicate. |
| 1055 | func (p *Predicate) In(col string, args ...any) *Predicate { |