Matches if both of L, R matches
(pkg PackageLike)
| 103 | |
| 104 | // Matches if both of L, R matches |
| 105 | func (q *AndQuery) Matches(pkg PackageLike) bool { |
| 106 | return q.L.Matches(pkg) && q.R.Matches(pkg) |
| 107 | } |
| 108 | |
| 109 | // Fast is true if any of the parts are fast |
| 110 | func (q *AndQuery) Fast(list PackageCatalog) bool { |