FreeBSD Manual Pages
std::basic_stringbuf::view(3) C++ Standard Libarystd::basic_stringbuf::view(3) NAME std::basic_stringbuf::view - std::basic_stringbuf::view Synopsis std::basic_string_view<CharT, Traits> view() const noexcept; (since C++20) Creates and returns a std::basic_string_view over the underlying character sequence. * For input-only streams, the returned view represents the range [eback(), egptr()). * For input/output or output-only streams, references the charac- ters from pbase() to the last character in the sequence regardless of egptr() and epptr(). * If the stream is neither input nor output, returns std::ba- sic_string_view<CharT, Traits>{}. The member character sequence in a buffer open for writing can be over-allocated for efficiency purposes. In that case, only the initialized characters are referenced: these characters are the ones that were obtained from the string ar- gument of the constructor, the string argument used by the most recent call to a setter overload of str(), or from a write operation. A typical implementation that uses over-allocation maintains a high-watermark pointer to track the end of the initialized part of the buffer and the returned view references the characters from pbase() to the high-watermark pointer. Parameters (none) Return value A view over the underlying character sequence. Notes Using of the return value is undefined behavior if the underlying character sequence is destroyed or invalidated, unless the return value is empty. This function is typically accessed through std::ba- sic_istringstream::view(), std::basic_ostringstream::view(), or std::ba- sic_stringstream::view(). See also replaces or obtains a copy of the associ- ated character str string (public member function) returns a non-modifiable string_view into the entire operator basic_string_view string (C++17) (public member function of std::basic_string<CharT,Traits,Alloca- tor>) http://cppreference.com 2022.07.31 std::basic_stringbuf::view(3)
NAME | Synopsis | Parameters | Return value | Notes | See also
Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=std::wstringbuf::view&sektion=3&manpath=FreeBSD+Ports+15.0>
