outputFromChar overloads
Synopses
Declared in <bslfmt_formattercharutil.h>
Output to the specified output iterator out the specified value. Return incremented out.
template<class t_ITERATOR>
static
t_ITERATOR
outputFromChar(
char const value,
t_ITERATOR out);
Write the character range [`begin`, end) to the output iterator out.]
template<class t_ITERATOR>
static
t_ITERATOR
outputFromChar(
char const* begin,
char const* end,
t_ITERATOR out);
Return Value
-
outincremented past the written character -
outincremented by the number of characters written
Parameters
Name |
Description |
value |
character to write |
out |
output iterator receiving the character |
begin |
address of the first character to write |
end |
address one past the last character to write |
Created with MrDocs