std::formatter<proxy_indirect_accessor>
namespace std {
template <facade F, class CharT> requires(/* see below */)
struct formatter<pro::proxy_indirect_accessor<F>, ChatT>; // since 3.2.0
}
The template specialization of std::formatter
for proxy_indirect_accessor
allows users to convert an object managed by proxy
to string using formatting functions such as std::format
. The specialization is enabled when F
is built from basic_facade_builder
and
CharT
is char
, specified support_format
, orCharT
is wchar_t
, specified support_wformat
.Name | Description |
---|---|
parse [constexpr] |
parse the format spec |
format |
format according to the format spec |