get overloads

Synopses

Declared in <bslstl_istringstream.h>

Simple extraction.

int_type
get();

Extraction into another streambuf.

__istream_type&
get(__streambuf_type& __sb);

Simple extraction.

__istream_type&
get(char_type& __c);

Extraction into another streambuf.

__istream_type&
get(
    __streambuf_type& __sb,
    char_type __delim);

Simple multiple‐character extraction.

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

Simple multiple‐character extraction.

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

Return Value

  • A character, or eof().

  • *this

Parameters

Name

Description

__sb

A streambuf in which to store data.

__c

The character in which to store data.

__delim

A "stop" character.

__s

Pointer to an array.

__n

Maximum number of characters to store in s.

Created with MrDocs