bsl::basic_ostringstream::operator<<

Left shift operators

Synopses

Declared in <bslstl_ostringstream.h>

Insert an unsigned long into the stream.

BaseStream&
operator<<(unsigned long value);
» more...

Insert a null pointer representation into the stream.

BaseStream&
operator<<(std::nullptr_t value);
» more...

Insert characters from streambuf until end-of-file.

BaseStream&
operator<<(std::basic_streambuf<char_type, traits_type>* streambuf);
» more...

Insert a volatile pointer value into the stream.

BaseStream&
operator<<(void const volatile* value);
» more...

Insert a pointer value into the stream.

BaseStream&
operator<<(void const* value);
» more...

Insert a long double into the stream.

BaseStream&
operator<<(long double value);
» more...

Insert a double into the stream.

BaseStream&
operator<<(double value);
» more...

Insert a float into the stream.

BaseStream&
operator<<(float value);
» more...

Insert an unsigned long long into the stream.

BaseStream&
operator<<(unsigned long long value);
» more...

Insert a long long into the stream.

BaseStream&
operator<<(long long value);
» more...

Apply a basic_ostream manipulator to this stream.

BaseStream&
operator<<(BaseStream&(* manipulator)(BaseStream&));
» more...

Insert a long into the stream.

BaseStream&
operator<<(long value);
» more...

Insert an unsigned int into the stream.

BaseStream&
operator<<(unsigned int value);
» more...

Insert an int into the stream.

BaseStream&
operator<<(int value);
» more...

Insert an unsigned short into the stream.

BaseStream&
operator<<(unsigned short value);
» more...

Insert a short into the stream.

BaseStream&
operator<<(short value);
» more...

Insert a boolean value into the stream.

BaseStream&
operator<<(bool value);
» more...

Apply an ios_base manipulator to this stream.

BaseStream&
operator<<(ios_base&(* manipulator)(ios_base&));
» more...

Apply a basic_ios manipulator to this stream.

BaseStream&
operator<<(std::basic_ios<char_type, traits_type>&(* manipulator)(std::basic_ios<char_type, traits_type>&));
» more...

Return Value

a reference to this stream

Parameters

NameDescription
valuevalue to insert
streambufsource stream buffer
manipulatorfunction to apply