btck::Iterator::Iterator

Constructors

Synopses

Declared in <kernel/bitcoinkernel_wrapper.h>

Constructs a singular (past-the-end sentinel) iterator.

Iterator() = default;
» more...

Constructs an iterator to the first element of ptr.

Iterator(Collection const* ptr);
» more...

Constructs an iterator to a specific index of ptr.

Iterator(
    Collection const* ptr,
    size_t idx);
» more...

Parameters

NameDescription
ptrThe collection to iterate over.
idxThe starting index.