BloombergLP::bslfmt::FormatterCharUtil<char>::outputFromChar

Write the character range [begin, end) to the output iterator out.]

Synopsis

Declared in <bslfmt_formattercharutil.h>

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

Description

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.

Return Value

out incremented by the number of characters written

Parameters

NameDescription
beginaddress of the first character to write
endaddress one past the last character to write
outoutput iterator receiving the characters