Yoba Perl
array_iterator.cpp
1 #include "yobaperl/array_iterator.hpp"
2 #include "yobaperl/array.hpp"
3 
4 namespace yoba {
5 
6 
7 
8 ArrayIterator::ArrayIterator(Perl & perl, SV ** ptr)
9  : _perl(perl),
10  _array_ptr(ptr)
11 {
12 }
13 
15  : _perl(to_move._perl),
16  _array_ptr(to_move._array_ptr)
17 {
18 }
19 
20 
21 
22 Scalar ArrayIterator::operator* () const
23 {
24  return Scalar(_perl, *_array_ptr, true);
25 }
26 
27 ArrayIterator & ArrayIterator::operator++ ()
28 {
29  _array_ptr++;
30  return *this;
31 }
32 
33 ArrayIterator & ArrayIterator::operator-- ()
34 {
35  _array_ptr--;
36  return *this;
37 }
38 
39 ArrayIterator ArrayIterator::operator++ (int)
40 {
41  return (*this)++;
42 }
43 
44 ArrayIterator ArrayIterator::operator-- (int)
45 {
46  return (*this)--;
47 }
48 
49 ArrayIterator ArrayIterator::operator+ (SSize_t diff) const
50 {
51  return ArrayIterator(_perl, _array_ptr + diff);
52 }
53 
54 ArrayIterator ArrayIterator::operator- (SSize_t diff) const
55 {
56  return ArrayIterator(_perl, _array_ptr - diff);
57 }
58 
59 ArrayIterator & ArrayIterator::operator+= (SSize_t diff)
60 {
61  _array_ptr += diff;
62  return *this;
63 }
64 
65 ArrayIterator & ArrayIterator::operator-= (SSize_t diff)
66 {
67  _array_ptr -= diff;
68  return *this;
69 }
70 
71 bool ArrayIterator::operator== (const ArrayIterator & other) const
72 {
73  return _array_ptr == other._array_ptr;
74 }
75 
76 bool ArrayIterator::operator!= (const ArrayIterator & other) const
77 {
78  return !(*this == other);
79 }
80 
81 
82 
83 } // namespace yoba
Definition: array.cpp:5
Array iterator.
ArrayIterator(ArrayIterator &&to_move)
Move constructor.
Scalar reference
Definition: scalar.hpp:24