Creates a character sequence
seq of
n characters
starting at
s, each widened using
out.widen() (
[basic.ios.members]),
where
n is the number that would be computed as if by:
- traits::length(s)
for the overload where the first argument is of type
basic_ostream<charT, traits>&
and the second is of type
const charT*,
and also for the overload where the first argument is of type
basic_ostream<char, traits>&
and the second is of type
const char*,
- char_traits<char>::length(s)
for the overload where the first argument is of type
basic_ostream<charT, traits>&
and the second is of type
const char*,
- traits::length(reinterpret_cast<const char*>(s))
for the other two overloads.