File tree Expand file tree Collapse file tree
include/bitcoin/database/primitives Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,17 +50,16 @@ class iterator
5050 iterator (memory_ptr&& data, const Link& start, Key&& key) NOEXCEPT;
5151 iterator (memory_ptr&& data, const Link& start, const Key& key) NOEXCEPT;
5252
53- // / Advance to and return next iterator .
53+ // / Advance to next and return false if none found .
5454 inline bool advance () NOEXCEPT;
5555
5656 // / Expose the search key.
5757 inline const Key& key () const NOEXCEPT;
5858
59- // / Advance to next match and return false if terminal ( not found) .
59+ // / Return current link, terminal if not found.
6060 inline const Link& self () const NOEXCEPT;
6161
6262 // / Access the underlying memory pointer.
63- // TODO: for use by hashmap, make exclusive via friend.
6463 inline const memory_ptr& get () const NOEXCEPT;
6564
6665 // / Release the memory pointer, invalidates iterator.
You can’t perform that action at this time.
0 commit comments