bsl::basic_istringstream::get

get overloads

Synopses

Declared in <bslstl_istringstream.h>

Simple extraction.

int_type
get();
» more...

Extraction into another streambuf.

__istream_type&
get(__streambuf_type& __sb);
» more...

Simple extraction.

__istream_type&
get(char_type& __c);
» more...

Extraction into another streambuf.

__istream_type&
get(
    __streambuf_type& __sb,
    char_type __delim);
» more...

Simple multiple-character extraction.

__istream_type&
get(
    char_type* __s,
    streamsize __n);
» more...

Simple multiple-character extraction.

__istream_type&
get(
    char_type* __s,
    streamsize __n,
    char_type __delim);
» more...

Return Value

  • A character, or eof().
  • *this

Parameters

NameDescription
__sbA streambuf in which to store data.
__cThe character in which to store data.
__delimA "stop" character.
__sPointer to an array.
__nMaximum number of characters to store in s.