Yoba Perl
hash_iterator.cpp
1 #include "yobaperl/hash_iterator.hpp"
2 #include "yobaperl/perl.hpp"
3 
4 namespace yoba {
5 
6 
7 
8 HashIterator::HashIterator(const Hash & hash, bool is_null)
9  : _hash(hash)
10 {
11  if(!is_null)
12  {
13  _hash._interInit();
14  _hash_entry = _hash._interNext();
15  }
16 }
17 
18 HashIterator::HashIterator(const HashIterator & to_copy)
19  : _hash(to_copy._hash),
20  _hash_entry(to_copy._getHE())
21 {
22 }
23 
25  : _hash(to_move._hash),
26  _hash_entry(to_move._getHE())
27 {
28  to_move._hash_entry = nullptr;
29 }
30 
31 
32 
33 HashEntry HashIterator::operator* () const
34 {
35  return HashEntry(_hash, _getHE());
36 }
37 
38 HashIterator & HashIterator::operator++ ()
39 {
40  _hash_entry = _hash._interNext();
41  return *this;
42 }
43 
44 HashIterator HashIterator::operator++ (int)
45 {
46  HashIterator copy = *this;
47  ++(*this);
48  return copy;
49 }
50 
51 HashIterator & HashIterator::operator+= (SSize_t diff)
52 {
53  for(SSize_t i = 0; i < diff; i++)
54  ++(*this);
55  return *this;
56 }
57 
58 bool HashIterator::operator== (const HashIterator & other) const
59 {
60  // Can be nullptr
61  return _hash_entry == other._hash_entry;
62 }
63 
64 bool HashIterator::operator!= (const HashIterator & other) const
65 {
66  return !(*this == other);
67 }
68 
69 
70 
71 HE * HashIterator::_getHE() const
72 {
73  YOBAPERL_ASSERT(_hash_entry);
74  return _hash_entry;
75 }
76 
77 
78 
79 HashIterator::operator bool() const
80 {
81  return _hash_entry != nullptr;
82 }
83 
84 
85 
86 } // namespace yoba
Key-value pair.
Definition: hash_entry.hpp:17
Definition: array.cpp:5
Hash iterator.
HashIterator(HashIterator &&to_move)
Move constructor.