# | Line 28 | Line 28 | public: | |
---|---|---|
28 | Iterator<Type>& operator--() { here = here->getPrevious(); return *this; } | |
29 | Iterator<Type> operator--(int); | |
30 | const Type& operator*() { return here->getValue(); } | |
31 | + | const Type* operator->() { return &here->getValue(); } |
32 | }; | |
33 | ||
34 | template<typename Type> |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |