and returns the query q AND r, possibly reusing q's and r's storage.
(r *Query)
| 39 | |
| 40 | // and returns the query q AND r, possibly reusing q's and r's storage. |
| 41 | func (q *Query) and(r *Query) *Query { |
| 42 | return q.andOr(r, QAnd) |
| 43 | } |
| 44 | |
| 45 | // or returns the query q OR r, possibly reusing q's and r's storage. |
| 46 | func (q *Query) or(r *Query) *Query { |
no test coverage detected