btck::Iterator::operator--

Decrement operators

Synopses

Declared in <kernel/bitcoinkernel_wrapper.h>

Moves to the previous element.

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

Moves to the previous element (post-decrement).

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

Return Value

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

Parameters

NameDescription
unusedIgnored disambiguator selecting the post-decrement form.