| 901 | inline bool Lexer::ManyDigits() { return ManyOf("0123456789"); } |
| 902 | |
| 903 | inline bool Lexer::OneLetter() { |
| 904 | return OneOf("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"); |
| 905 | } |
| 906 | |
| 907 | inline bool Lexer::ManyLetters() { |
| 908 | return ManyOf("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"); |
nothing calls this directly
no outgoing calls
no test coverage detected