1 #include "yobaperl/array_iterator.hpp" 2 #include "yobaperl/array.hpp" 15 : _perl(to_move._perl),
16 _array_ptr(to_move._array_ptr)
22 Scalar ArrayIterator::operator* ()
const 24 return Scalar(_perl, *_array_ptr,
true);
71 bool ArrayIterator::operator== (
const ArrayIterator & other)
const 73 return _array_ptr == other._array_ptr;
76 bool ArrayIterator::operator!= (
const ArrayIterator & other)
const 78 return !(*
this == other);
ArrayIterator(ArrayIterator &&to_move)
Move constructor.