reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
80 struct And<Pred, Preds...> : And<Preds...> { 80 struct And<Pred, Preds...> : And<Preds...> { 82 And(Pred &&p, Preds &&... preds) 83 : And<Preds...>(std::forward<Preds>(preds)...), P(std::forward<Pred>(p)) { 87 return P.match(MRI, src) && And<Preds...>::match(MRI, src);