bsl::basic_istringstream::getline

String extraction.

Synopses

Declared in <bslstl_istringstream.h>

String extraction.

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

String extraction.

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

Return Value

*this

Parameters

NameDescription
__sA character array in which to store the data.
__nMaximum number of characters to extract.
__delimA "stop" character.