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

Function decimal_point

include/fmt/format.h:1177–1179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1175template <typename Char>
1176FMT_API auto decimal_point_impl(locale_ref loc) -> Char;
1177template <typename Char> inline auto decimal_point(locale_ref loc) -> Char {
1178 return Char(decimal_point_impl<char>(loc));
1179}
1180template <> inline auto decimal_point(locale_ref loc) -> wchar_t {
1181 return decimal_point_impl<wchar_t>(loc);
1182}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected