Stream insertion operators

Synopses

Declared in <bdlde_base64alphabet.h>

Write the string representation of the specified enumeration value to the specified output stream in a single‐line format, and return a reference to stream. See toAscii for what constitutes the string representation of a bdlde::Base64Alphabet::Enum value. Note that this method has the same behavior as ` bdlde::Base64Alphabet::print(stream, value, 0, ‐1); `

std::ostream&
operator<<(
    std::ostream& stream,
    Base64Alphabet::Enum value);

Format the specified rhs to the specified output stream and return a reference to the modifiable stream.

std::ostream&
operator<<(
    std::ostream& stream,
    Base64EncoderOptions const& rhs);

Write the string representation of the specified enumeration value to the specified output stream in a single‐line format, and return a reference to stream. See toAscii for what constitutes the string representation of a bdlde::Base64Alphabet::Enum value. Note that this method has the same behavior as ` bdlde::Base64Alphabet::print(stream, value, 0, ‐1); `

std::ostream&
operator<<(
    std::ostream& stream,
    Base64IgnoreMode::Enum value);

Format the specified rhs to the specified output stream and return a reference to the modifiable stream.

std::ostream&
operator<<(
    std::ostream& stream,
    Base64DecoderOptions const& rhs);

Write the string representation of the specified enumeration value to the specified output stream in a single‐line format, and return a reference to stream. See toAscii for what constitutes the string representation of a bdlde::ByteOrder::Enum value. Note that this method has the same behavior as ` bdlde::ByteOrder::print(stream, value, 0, ‐1); `

std::ostream&
operator<<(
    std::ostream& stream,
    ByteOrder::Enum value);

Write to the specified output stream the specified MD5 digest and return a reference to the modifiable stream.

std::ostream&
operator<<(
    std::ostream& stream,
    Md5 const& digest);

Write to the specified output stream the specified checksum value and return a reference to the modifiable stream.

std::ostream&
operator<<(
    std::ostream& stream,
    Crc64 const& checksum);

Write to the specified output stream the specified checksum value and return a reference to the modifiable stream.

std::ostream&
operator<<(
    std::ostream& stream,
    Crc32 const& checksum);

Write the string representation of the specified enumeration value to the specified output stream in a single‐line format, and return a reference to stream. See toAscii for what constitutes the string representation of a bdlde::CharConvertStatus::Enum value. Note that this method has the same behavior as ` bdlde::CharConvertStatus::print(stream, value, 0, ‐1); `

std::ostream&
operator<<(
    std::ostream& stream,
    CharConvertStatus::Enum value);

Write to the specified output stream the specified SHA‐2 digest and return a reference to the modifiable stream.

std::ostream&
operator<<(
    std::ostream& stream,
    Sha224 const& digest);

Write to the specified output stream the specified SHA‐2 digest and return a reference to the modifiable stream.

std::ostream&
operator<<(
    std::ostream& stream,
    Sha256 const& digest);

Write to the specified output stream the specified SHA‐2 digest and return a reference to the modifiable stream.

std::ostream&
operator<<(
    std::ostream& stream,
    Sha384 const& digest);

Write to the specified output stream the specified SHA‐2 digest and return a reference to the modifiable stream.

std::ostream&
operator<<(
    std::ostream& stream,
    Sha512 const& digest);

Write to the specified output stream the specified SHA‐1 digest and return a reference to the modifiable stream.

std::ostream&
operator<<(
    std::ostream& stream,
    Sha1 const& digest);

Created with MrDocs