| 227 | // //////////////////////////////// |
| 228 | |
| 229 | static inline bool in(Reader::Char c, |
| 230 | Reader::Char c1, |
| 231 | Reader::Char c2, |
| 232 | Reader::Char c3, |
| 233 | Reader::Char c4) { |
| 234 | return c == c1 || c == c2 || c == c3 || c == c4; |
| 235 | } |
| 236 | |
| 237 | static inline bool in(Reader::Char c, |
| 238 | Reader::Char c1, |
no outgoing calls
no test coverage detected