C++ basic_streambuf Library - epptr



Description

It is used in pointer to end of output sequence and returns a pointer to the element just past the last element of the array with the portion of the controlled output sequence that is currently buffered.

Declaration

Following is the declaration for std::basic_streambuf::epptr.

char* epptr() const;

Parameters

none

Return Value

It returns a pointer to the past-the-end element of an array with the part of the controlled output sequence that is currently buffered.

Exceptions

Strong guarantee − if an exception is thrown, there are no changes in the stream buffer.

Data races

It accesses the stream buffer object.

streambuf.htm
Advertisements