MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / IsAlpha

Function IsAlpha

tensorflow/compiler/aot/codegen.cc:44–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42using BufferInfo = xla::cpu_function_runtime::BufferInfo;
43
44bool IsAlpha(char c) {
45 return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z');
46}
47
48bool IsAlphaNum(char c) { return IsAlpha(c) || (c >= '0' && c <= '9'); }
49

Callers 2

IsAlphaNumFunction · 0.70
ValidateCppIdentFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected