Stream insertion operators

Synopses

Declared in <ball_attribute.h>

Format the members of the specified record to the specified output stream and return a reference to the modifiable stream.

std::ostream&
operator<<(
    std::ostream& stream,
    Record const& record);

Write the value of attributeContainer to the specified output stream.

std::ostream&
operator<<(
    std::ostream& output,
    DefaultAttributeContainer const& attributeContainer);

Write the value of the specified container to the specified output stream in a single‐line format, and return a reference to the modifiable stream.

std::ostream&
operator<<(
    std::ostream& stream,
    AttributeContainer const& container);

Write the specified rhs record formatter to the specified output stream.

std::ostream&
operator<<(
    std::ostream& output,
    RecordStringFormatter const& rhs);

Write a single‐line description of the specified context to stream.

std::ostream&
operator<<(
    std::ostream& stream,
    AttributeContext const& context);

Write a single‐line description of the specified cache to stream.

std::ostream&
operator<<(
    std::ostream& stream,
    AttributeContext_RuleEvaluationCache const& cache);

Write the value of the specified rules to the specified output stream.

std::ostream&
operator<<(
    std::ostream& output,
    RuleSet const& rules);

Write the value of the specified rule to the specified output stream. Return the specified output stream.

std::ostream&
operator<<(
    std::ostream& output,
    Rule const& rule);

Write the value of the specified attributeSet to the specified output stream. Return the specified output stream.

std::ostream&
operator<<(
    std::ostream& output,
    ManagedAttributeSet const& attributeSet);

Write a representation of configuration to the specified stream.

std::ostream&
operator<<(
    std::ostream& stream,
    LoggerManagerConfiguration const& configuration);

Write the specified defaults object to the specified output stream in a reasonable multi‐line format.

std::ostream&
operator<<(
    std::ostream& stream,
    LoggerManagerDefaults const& defaults);

Write a formatted description of the specified rhs to the specified stream and return a reference to the modifiable stream.

std::ostream&
operator<<(
    std::ostream& output,
    AttributeContainerList const& rhs);

Write the value of the specified attribute to the specified output stream. Return the specified output stream.

std::ostream&
operator<<(
    std::ostream& output,
    Attribute const& attribute);

Write the value of the specified object to the specified output stream in a single‐line format, and return a reference to stream.

std::ostream&
operator<<(
    std::ostream& stream,
    UserFields const& object);

Write the value of the specified object to the specified output stream in a single‐line format, and return a reference to stream.

std::ostream&
operator<<(
    std::ostream& stream,
    UserFieldValue const& object);

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,
    UserFieldType::Enum value);

Format the members of the specified object to the specified output stream and return a reference to the modifiable stream.

std::ostream&
operator<<(
    std::ostream& stream,
    RecordAttributes const& object);

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

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

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

std::ostream&
operator<<(
    std::ostream& stream,
    Transmission::Cause rhs);

Write the value of the specified object to the specified stream.

std::ostream&
operator<<(
    std::ostream& stream,
    HierarchicalCategorySetting const& object);

Write the value of the specified threshold aggregate to the specified output stream and return a reference to the modifiable stream.

std::ostream&
operator<<(
    std::ostream& stream,
    ThresholdAggregate const& aggregate);

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

std::ostream&
operator<<(
    std::ostream& stream,
    Severity::Level rhs);

Write the value of the specified attribute to the specified output stream. Return the specified output stream.

std::ostream&
operator<<(
    std::ostream& output,
    ManagedAttribute const& attribute);

Return Value

  • reference to stream

  • a reference to output

  • reference to the modifiable stream

  • reference to output

  • reference to the modifiable output

  • a reference to the modifiable stream

Parameters

Name

Description

stream

output stream

record

log record to write

output

output stream

attributeContainer

container to write

container

attribute container to format

rhs

record formatter to write

context

attribute context to write

cache

rule‐evaluation cache to write

rules

rule set to write

rule

rule to write

attributeSet

attribute set to write

configuration

configuration object to write

defaults

defaults object to write

attribute

attribute to write

object

object to write

value

enumeration value to write

aggregate

threshold aggregate to write

Created with MrDocs