format_to overloads

Synopses

Declared in <bslfmt_format_imp.h>

Format the specified args according to the specification given by the specified fmtStr, and write the result of this operation into the string addressed by the specified out parameter. In the event of an error the exception format_error is thrown. Behavior is undefined if out does not point to a valid bsl::string object.

template<class... t_ARGS>
void
format_to(
    bsl::string* out,
    bslfmt::format_string<t_ARGS...> fmtStr,
    t_ARGS const&... args);

Format the specified args according to the specification given by the specified fmtStr, and write the result of this operation into the string addressed by the specified out parameter. In the event of an error the exception format_error is thrown. Behavior is undefined if out does not point to a valid bsl::string object.

template<class... t_ARGS>
void
format_to(
    bsl::wstring* out,
    bslfmt::wformat_string<t_ARGS...> fmtStr,
    t_ARGS const&... args);

Format the specified args according to the specification given by the specified fmtStr, and write the result of this operation into the output iterator given by the specified out parameter. In the event of an error the exception format_error is thrown. Behavior is undefined if out does not point to a valid output parameter.

template<
    class t_OUT,
    class... t_ARGS>
t_OUT
format_to(
    t_OUT out,
    bslfmt::format_string<t_ARGS...> fmtStr,
    t_ARGS const&... args)
requires !bsl::is_same<typename bsl::decay<t_OUT>::type, bsl::string *>::value;

Format the specified args according to the specification given by the specified fmtStr, and write the result of this operation into the output iterator given by the specified out parameter. In the event of an error the exception format_error is thrown. Behavior is undefined if out does not point to a valid output parameter.

template<
    class t_OUT,
    class... t_ARGS>
t_OUT
format_to(
    t_OUT out,
    bslfmt::wformat_string<t_ARGS...> fmtStr,
    t_ARGS const&... args)
requires !bsl::is_same<typename bsl::decay<t_OUT>::type, bsl::wstring *>::value;

Created with MrDocs