GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::basic_streambuf::eback,gptr,egptr(3) C++ Standard Libary std::basic_streambuf::eback,gptr,egptr(3)

std::basic_streambuf::eback,gptr,egptr - std::basic_streambuf::eback,gptr,egptr


char_type* eback() const; (1)
char_type* gptr() const; (2)
char_type* egptr() const; (3)


Returns pointers defining the get area.


1) Returns the pointer to the beginning of the get area.


2) Returns the pointer to the current character (get pointer) in the get area.


3) Returns the pointer one past the end of the get area.


(none)


1) The pointer to the beginning of the get area.


2) The pointer to the current character (get pointer) in the get area.


3) The pointer one past the end of the get area.


While the names "gptr" and "egptr" refer to the get area, the name "eback" refers to
the end of the putback area: stepping backwards from gptr, characters can be put
back until eback.


This section is incomplete
Reason: no example


pbase returns a pointer to the beginning, current character and the end of the put
pptr area
epptr (protected member function)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.