| 1191 | // non-const to inform users not to mark Id as const. |
| 1192 | template <typename Pattern> |
| 1193 | constexpr auto at(Pattern &&pattern) |
| 1194 | { |
| 1195 | return and_(pattern, *this); |
| 1196 | } |
| 1197 | |
| 1198 | // non-const to inform users not to mark Id as const. |
| 1199 | constexpr auto at(Ooo const &) { return OooBinder<Type>{*this}; } |
no test coverage detected