MCPcopy Create free account
hub / github.com/fmtlib/fmt / parse_align

Function parse_align

include/fmt/base.h:1317–1324  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1315}
1316
1317FMT_CONSTEXPR inline auto parse_align(char c) -> align {
1318 switch (c) {
1319 case '<': return align::left;
1320 case '>': return align::right;
1321 case '^': return align::center;
1322 }
1323 return align::none;
1324}
1325
1326template <typename Char> constexpr auto is_name_start(Char c) -> bool {
1327 return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') || c == '_';

Callers 6

parseMethod · 0.85
parseMethod · 0.85
parseMethod · 0.85
do_parseMethod · 0.85
parseMethod · 0.85
parse_format_specsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected