| 23 | namespace tensorflow { |
| 24 | |
| 25 | static bool IsAlpha(char c) { |
| 26 | return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'); |
| 27 | } |
| 28 | |
| 29 | static bool IsAlphaNum(char c) { return IsAlpha(c) || (c >= '0' && c <= '9'); } |
| 30 |
no outgoing calls
no test coverage detected