node::operator<<

Stream insertion operators

Synopses

Declared in <node/blockstorage.h>

Write a human-readable name for a block file type to a stream.

std::ostream&
operator<<(
    std::ostream& os,
    BlockfileType const& type);
» more...

Write a human-readable description of a block file cursor to a stream.

std::ostream&
operator<<(
    std::ostream& os,
    BlockfileCursor const& cursor);
» more...

Return Value

The stream os, to allow chaining.

Parameters

NameDescription
osThe output stream to write to.
typeThe block file type to format.
cursorThe block file cursor to format.