MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / is_name_start

Function is_name_start

extlibs/fmt/include/fmt/format.h:1980–1982  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1978};
1979
1980template <typename Char> FMT_CONSTEXPR bool is_name_start(Char c) {
1981 return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') || '_' == c;
1982}
1983
1984// Parses the range [begin, end) as an unsigned integer. This function assumes
1985// that the range is non-empty and the first character is a digit.

Callers 1

parse_arg_idFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected