From 1ecca4b3d882fcbc704f21a0ed9f32c0e2d2524e Mon Sep 17 00:00:00 2001 From: "Robin.Mueller" Date: Thu, 1 Oct 2020 20:33:50 +0200 Subject: [PATCH] taken over array list --- container/ArrayList.h | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/container/ArrayList.h b/container/ArrayList.h index 16318569..6bd5c1d5 100644 --- a/container/ArrayList.h +++ b/container/ArrayList.h @@ -131,19 +131,6 @@ public: const T *operator->() const { return value; } - - -// //SHOULDDO this should be implemented as non-member -// bool operator==(const typename -// ArrayList::Iterator& other) const { -// return (value == other.value); -// } -// -// //SHOULDDO this should be implemented as non-member -// bool operator!=(const typename -// ArrayList::Iterator& other) const { -// return !(*this == other); -// } }; friend bool operator==(const ArrayList::Iterator& lhs,