[#bsl-basic_ostringstream-operator_lshift-085] = xref:bsl.adoc[bsl]::xref:bsl/basic_ostringstream.adoc[basic_ostringstream]::operator<< :relfileprefix: ../../ :mrdocs: Left shift operators == Synopses Declared in `<bslstl_ostringstream.h>` Insert an `unsigned long` into the stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-07a.adoc[operator<<](unsigned long value); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-07a.adoc[_» more..._]# Insert a null pointer representation into the stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-05a.adoc[operator<<](std::nullptr_t value); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-05a.adoc[_» more..._]# Insert characters from `streambuf` until end‐of‐file. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-0ff.adoc[operator<<](std::basic_streambuf<char_type, traits_type>* streambuf); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-0ff.adoc[_» more..._]# Insert a volatile pointer value into the stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-0d.adoc[operator<<](void const volatile* value); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-0d.adoc[_» more..._]# Insert a pointer value into the stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-0c0.adoc[operator<<](void const* value); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-0c0.adoc[_» more..._]# Insert a `long double` into the stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-0fb.adoc[operator<<](long double value); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-0fb.adoc[_» more..._]# Insert a `double` into the stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-058.adoc[operator<<](double value); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-058.adoc[_» more..._]# Insert a `float` into the stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-056.adoc[operator<<](float value); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-056.adoc[_» more..._]# Insert an `unsigned long long` into the stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-03.adoc[operator<<](unsigned long long value); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-03.adoc[_» more..._]# Insert a `long long` into the stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-04b.adoc[operator<<](long long value); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-04b.adoc[_» more..._]# Apply a `basic_ostream` manipulator to this stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-09.adoc[operator<<](xref:bsl/basic_ostringstream.adoc[BaseStream]&(* manipulator)(xref:bsl/basic_ostringstream.adoc[BaseStream]&)); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-09.adoc[_» more..._]# Insert a `long` into the stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-02.adoc[operator<<](long value); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-02.adoc[_» more..._]# Insert an `unsigned int` into the stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-0b.adoc[operator<<](unsigned int value); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-0b.adoc[_» more..._]# Insert an `int` into the stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-07c.adoc[operator<<](int value); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-07c.adoc[_» more..._]# Insert an `unsigned short` into the stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-0c8.adoc[operator<<](unsigned short value); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-0c8.adoc[_» more..._]# Insert a `short` into the stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-04d.adoc[operator<<](short value); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-04d.adoc[_» more..._]# Insert a boolean value into the stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-082.adoc[operator<<](bool value); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-082.adoc[_» more..._]# Apply an `ios_base` manipulator to this stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-070.adoc[operator<<](xref:bsl/basic_ostringstream.adoc[ios_base]&(* manipulator)(xref:bsl/basic_ostringstream.adoc[ios_base]&)); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-070.adoc[_» more..._]# Apply a `basic_ios` manipulator to this stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_ostringstream.adoc[BaseStream]& xref:bsl/basic_ostringstream/operator_lshift-06.adoc[operator<<](std::basic_ios<char_type, traits_type>&(* manipulator)(std::basic_ios<char_type, traits_type>&)); ---- [.small]#xref:bsl/basic_ostringstream/operator_lshift-06.adoc[_» more..._]# == Return Value a reference to this stream == Parameters [cols="1,4"] |=== | Name| Description | *value* | value to insert | *streambuf* | source stream buffer | *manipulator* | function to apply |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#