1 #include "yobaperl/hash_iterator.hpp" 2 #include "yobaperl/perl.hpp" 14 _hash_entry = _hash._interNext();
19 : _hash(to_copy._hash),
20 _hash_entry(to_copy._getHE())
25 : _hash(to_move._hash),
26 _hash_entry(to_move._getHE())
28 to_move._hash_entry =
nullptr;
33 HashEntry HashIterator::operator* ()
const 40 _hash_entry = _hash._interNext();
53 for(SSize_t i = 0; i < diff; i++)
58 bool HashIterator::operator== (
const HashIterator & other)
const 61 return _hash_entry == other._hash_entry;
64 bool HashIterator::operator!= (
const HashIterator & other)
const 66 return !(*
this == other);
71 HE * HashIterator::_getHE()
const 73 YOBAPERL_ASSERT(_hash_entry);
79 HashIterator::operator bool()
const 81 return _hash_entry !=
nullptr;
HashIterator(HashIterator &&to_move)
Move constructor.