BloombergLP::bslfmt::FormatterCharUtil<wchar_t>::outputFromChar

outputFromChar overloads

Synopses

Declared in <bslfmt_formattercharutil.h>

Output to the specified output iterator out the specified value. Return incremented out. Note that in case of a negative input character the outputted result is unspecified.

template<class t_ITERATOR>
static
t_ITERATOR
outputFromChar(
    char const value,
    t_ITERATOR out);
» more...

Output to the specified output iterator out the character sequence starting at the specified begin address and ending immediately before the specified end address. Return out incremented by the number of characters written. The behavior is undefined unless begin <= end. Note that in case of a negative input character the outputted result is unspecified.

template<class t_ITERATOR>
static
t_ITERATOR
outputFromChar(
    char const* begin,
    char const* end,
    t_ITERATOR out);
» more...