bsl::basic_syncbuf::xsputn

xsputn overloads

Synopses

Declared in <bslstl_syncbuf.h>

Multiple character insertion.

virtual
streamsize
xsputn(
    char_type const* __s,
    streamsize __n);
» more...

Write the specified inputString array of the specified count characters to the internal buffer. Return the number of characters successfully written.

std::streamsize
xsputn(
    char_type const* inputString,
    std::streamsize count) override;
» more...

Return Value

The number of characters written.

Parameters

NameDescription
__sA buffer area.
__nMaximum number of characters to write.