taken over array list

This commit is contained in:
Robin Müller 2020-10-01 20:33:50 +02:00
parent 0714dc6e06
commit 1ecca4b3d8
1 changed files with 0 additions and 13 deletions

View File

@ -131,19 +131,6 @@ public:
const T *operator->() const {
return value;
}
// //SHOULDDO this should be implemented as non-member
// bool operator==(const typename
// ArrayList<T, count_t>::Iterator& other) const {
// return (value == other.value);
// }
//
// //SHOULDDO this should be implemented as non-member
// bool operator!=(const typename
// ArrayList<T, count_t>::Iterator& other) const {
// return !(*this == other);
// }
};
friend bool operator==(const ArrayList::Iterator& lhs,