std::basic_streambuf<CharT,Traits>::pbase, std::basic_streambuf<CharT,Traits>::pptr, std::basic_streambuf<CharT,Traits>::epptr
From cppreference.com
< cpp | io | basic streambuf
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Input/output library
Print functions (C++23)
Buffers
(C++23)
(C++98/26*)
(C++20)
Streams
Abstractions
File I/O
String I/O
Array I/O
(C++23)
(C++23)
(C++23)
(C++98/26*)
(C++98/26*)
(C++98/26*)
Synchronized Output
(C++20)
Types
Error category interface
(C++11)
(C++11)
std::basic_streambuf
Public member functions
Locales
Positioning
Get area
Put area
Putback
Protected member functions
(C++11)
(C++11)
Locales
Positioning
Get area
Put area
basic_streambuf::pbasebasic_streambuf::pptrbasic_streambuf::epptr
Putback
protected:
char_type* pbase() const;
(1)
char_type* pbase() const;
protected:
char_type* pptr() const;
(2)
char_type* pptr() const;
protected:
char_type* epptr() const;
(3)
char_type* epptr() const;
Returns pointers defining the put area.
1) Returns the pointer to the beginning ("base") of the put area.
2) Returns the pointer to the current character (put pointer) in the put area.
3) Returns the pointer one past the end of the put area.
Contents
[edit] Parameters
(none)
[edit] Return value
1) The pointer to the beginning of the put area.
2) The pointer to the current character (put pointer) in the put area.
3) The pointer one past the end of the put area.
[edit] Example
This section is incomplete
Reason: no example
Reason: no example
[edit] See also
returns a pointer to the beginning, current character and the end of the get area
(protected member function) [edit]
(protected member function) [edit]