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

From Cppreference

Jump to: navigation, search
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 to the end of the get area.

Contents

[edit] Parameters

(none)

[edit] Return value

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 to the end of the get area.

[edit] Example

[edit] See also

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