btck::Iterator::operator++

Increment operators

Synopses

Declared in <kernel/bitcoinkernel_wrapper.h>

Advances to the next element.

auto&
operator++();
» more...

Advances to the next element (post-increment).

auto
operator++(int unused);
» more...

Return Value

  • A reference to this iterator.
  • A copy of the iterator before advancing.

Parameters

NameDescription
unusedIgnored disambiguator selecting the post-increment form.