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

Function IsAlpha

tensorflow/core/util/device_name_utils.cc:25–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 4

IsAlphaNumFunction · 0.70
IsJobNameFunction · 0.70
ConsumeJobNameFunction · 0.70
ConsumeDeviceTypeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected