Constructors
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...
| Name | Description |
|---|---|
| ptr | The collection to iterate over. |
| idx | The starting index. |