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.

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 specified enumeration value to the specified output stream.

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.

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

Write the string representation of the specified enumeration value to the specified output stream in a single‐line format.

std::ostream&
operator<<(
    std::ostream& stream,
    CharConvertStatus::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 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);

Return Value

  • a reference to stream

  • a reference to the modifiable stream

Parameters

Name

Description

stream

output stream

value

enumeration value to write

rhs

options object to format

digest

MD5 digest to write

checksum

checksum value to write

Created with MrDocs