Increment operators

Synopses

Declared in <kernel/bitcoinkernel_wrapper.h>

Advances to the next element.

auto&
operator++();

Advances to the next element (post‐increment).

auto
operator++(int unused);

Return Value

  • A reference to this iterator.

  • A copy of the iterator before advancing.

Parameters

Name

Description

unused

Ignored disambiguator selecting the post‐increment form.

Created with MrDocs